NSStepperCell |
Mac OS X 10.0 |
This class is the associated cell for the
NSStepper control. As an NSCell
subclass, this NSStepperCell is responsible for
the appearence and event handling of an NSStepper
control.
@interface NSStepperCell : NSActionCell
|
// Accessor Methods |
- (void)setMaxValue:(double)maxValue;
|
- (double)maxValue;
|
- (void)setMinValue:(double)minValue;
|
- (double)minValue;
|
- (void)setAutorepeat:(BOOL)autorepeat;
|
- (BOOL)autorepeat;
|
- (void)setIncrement:(double)increment;
|
- (double)increment;
|
- (void)setValueWraps:(BOOL)valueWraps;
|
- (BOOL)valueWraps;
|
|