API  1.0.0
CPStepper.h
Go to the documentation of this file.
1 
2 @interface CPStepper: CPControl
3 {
4  BOOL _valueWraps // @accessors(property=valueWraps);
5  BOOL _autorepeat // @accessors(getter=autorepeat);
6  int _increment // @accessors(property=increment);
7  int _maxValue // @accessors(property=maxValue);
8  int _minValue // @accessors(property=minValue);
9 
10  CPButton _buttonDown;
11  CPButton _buttonUp;
12 }
13 @end