DekGenius.com
[ Team LiB ] Previous Section Next Section

NSStepper Mac OS X 10.0

This is a subclass of NSControl that allows users to change an incremental value by clicking on portions of the control that either increment or decrement the value of the control by some predetermined amount.

figs/cocn_1594.gif

@interface NSStepper : NSControl
 // 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;

    [ Team LiB ] Previous Section Next Section