CBLPropertyValueSetType
Objective-C
enum CBLPropertyValueSetType : NSInteger {}
Swift
struct PropertyValueSetType : OptionSet, @unchecked Sendable
Option set identifying how the property can be changed.
-
The property is read-only, information about the property has not yet been loaded, or the property isn’t supported by the camera.
Declaration
Objective-C
CBLPropertyValueSetTypeNone = 0 -
The property provides a list of values to be set via the
validSettableValuesproperty, and values can be set with the-setValue:…methods.Declaration
Objective-C
CBLPropertyValueSetTypeEnumeration = 1 << 0Swift
static var enumeration: PropertyValueSetType { get } -
The property’s value can be increased or decreased with the
incrementValue:…anddecrementValue:…methods.Declaration
Objective-C
CBLPropertyValueSetTypeStepping = 1 << 1Swift
static var stepping: PropertyValueSetType { get }