@since SDL 7.0.0
- (nonnull instancetype)initWithApproximatePosition:(UInt8)approximatePosition
deviation:(UInt8)deviation;
init(approximatePosition: UInt8, deviation: UInt8)
- The approximate percentage that the window is open - 0 being fully closed, 100 being fully open
- The percentage deviation of the approximatePosition. e.g. If the approximatePosition is 50 and the deviation is 10, then the window’s location is somewhere between 40 and 60.
A SDLWindowState object
The approximate percentage that the window is open - 0 being fully closed, 100 being fully open
Mandatory, Integer, 0 - 100
@property (nonatomic, strong) NSNumber<SDLUInt> *_Nonnull approximatePosition;
var approximatePosition: NSNumber & SDLUInt { get set }
The percentage deviation of the approximatePosition. e.g. If the approximatePosition is 50 and the deviation is 10, then the window’s location is somewhere between 40 and 60.
Mandatory, Integer, 0 - 100
@property (nonatomic, strong) NSNumber<SDLUInt> *_Nonnull deviation;
var deviation: NSNumber & SDLUInt { get set }