INumericUpDown
Mobilize.QualityMate.ControlInterfaces
INumericUpDown Interface
Defines the basic interactions for NumericUpDown controls.
public interface INumericUpDown :
Mobilize.QualityMate.ControlInterfaces.Behavior.ITextControl,
Mobilize.QualityMate.ControlInterfaces.IControl,
Mobilize.QualityMate.ControlInterfaces.Behavior.IValidatable
Implements ITextControl, IControl, IValidatable
Methods
INumericUpDown.Decrement(int) Method
Clicks the INumericUpDown's decrement button value times.
void Decrement(int value);
Parameters
value
System.Int32
The number of times to click the decrement button.
INumericUpDown.GetValue() Method
Gets the current integer value in the control.
int GetValue();
Returns
System.Int32 The value on the INumericUpDown's input box.
INumericUpDown.Increment(int) Method
Clicks the INumericUpDown's increment button value times.
void Increment(int value);
Parameters
value
System.Int32
The number of times to click the increment button.
Last updated
Was this helpful?