BMPVttPosition
Objective-C
@interface BMPVttPosition : NSObject
/**
Defines whether the value is not present, set to auto or to an actual numeric value.
Default: BMPVttPositionValueTypeAuto
*/
@property (nonatomic) BMPVttPositionValueType type;
/**
The actual value for the position property.
@note When type is set to BMPVttPositionValueTypeAuto the value should be ignored.
*/
@property (nonatomic) double value;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
@end
Swift
class BMPVttPosition : NSObject
Undocumented
-
Defines whether the value is not present, set to auto or to an actual numeric value.
Default: BMPVttPositionValueTypeAuto
Declaration
Objective-C
@property (nonatomic) BMPVttPositionValueType type;
Swift
var type: VttPositionValueType { get set }
-
The actual value for the position property.
Note
When type is set to BMPVttPositionValueTypeAuto the value should be ignored.Declaration
Objective-C
@property (nonatomic) double value;
Swift
var value: Double { get set }
-
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE;
-
Unavailable
Undocumented
Declaration
Objective-C
+ (instancetype)new NS_UNAVAILABLE;