BMPVttLine

Objective-C

@interface BMPVttLine : NSObject
/**
 Defines whether the value is not present, set to auto or to an actual numeric value.

 Default: BMPVttLineValueTypeAuto
 */
@property (nonatomic) BMPVttLineValueType type;
/**
 The actual value for the line property.

 @note When type is set to BMPVttLineValueTypeAuto the value should be ignored.
 */
@property (nonatomic) double value;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
@end

Swift

class BMPVttLine : NSObject

Undocumented

  • Defines whether the value is not present, set to auto or to an actual numeric value.

    Default: BMPVttLineValueTypeAuto

    Declaration

    Objective-C

    @property (nonatomic) BMPVttLineValueType type;

    Swift

    var type: VttLineValueType { get set }
  • The actual value for the line property.

    Note

    When type is set to BMPVttLineValueTypeAuto 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;