| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/AppKit.framework |
| Availability | Available in Mac OS X v10.0 and later.
|
| Companion guide | |
| Declared in | NSStepperCell.h |
An NSStepperCell object controls the appearance and behavior of an NSStepper object.
Returns a Boolean value indicating how the receiver responds to mouse events.
- (BOOL)autorepeat
If YES, the first mouse down will do one increment (decrement), and, after a delay of 0.5 seconds, will increment (decrement) at a rate of ten times per second. If NO, the receiver will do one increment (decrement) on a mouse up. The default is YES.
NSStepperCell.hReturns the amount by which the receiver will change per increment or decrement.
- (double)increment
The amount by which the receiver changes. The default is 1.
NSStepperCell.hReturns the maximum value for the receiver.
- (double)maxValue
The maximum value. The default is 59.
NSStepperCell.hReturns the minimum value for the receiver.
- (double)minValue
The minimum value. The default is 0.
NSStepperCell.hSets how the receiver responds to mouse events.
- (void)setAutorepeat:(BOOL)autorepeat
If YES, the first mouse down will do one increment (decrement) and, after a delay of 0.5 seconds, will increment (decrement) at a rate of ten times per second. If autorepeat is NO, the receiver will do one increment (decrement) on a mouse up.
NSStepperCell.hSets the amount by which the receiver will change per increment or decrement.
- (void)setIncrement:(double)increment
The amount by which the receiver changes.
NSStepperCell.hSets the maximum value for the receiver.
- (void)setMaxValue:(double)maxValue
The new maximum value.
NSStepperCell.hSets the minimum value for the receiver.
- (void)setMinValue:(double)minValue
The new minimum value.
NSStepperCell.hSets whether the receiver wraps around the minimum and maximum values.
- (void)setValueWraps:(BOOL)valueWraps
If YES, then when incrementing or decrementing, the value will wrap around to the minimum or maximum. If valueWraps is NO, the value will stay pinned at the minimum or maximum.
NSStepperCell.hReturns a Boolean value indicating whether the receiver wraps around the minimum and maximum values.
- (BOOL)valueWraps
YES if, when incrementing or decrementing, the value wraps around to the minimum or maximum. NO if the value stays pinned at the minimum or maximum. The default is YES.
NSStepperCell.h
Last updated: 2006-05-23