NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NumericUpDown.UpButton

Increments the value of the up-down control.

[Visual Basic]
Overrides Public Sub UpButton()
[C#]
public override void UpButton();
[C++]
public: override void UpButton();
[JScript]
public override function UpButton();

Remarks

When the UpButton method is called, either in code or by the click of the up button, the new value is validated and the control updated with the new value in the appropriate format. Specifically, if UserEdit is set to true, ParseEditText is called prior to validating or updating the value. The value is then validated to be between the Minimum and Maximum values and the UpdateEditText method is called.

See Also

NumericUpDown Class | NumericUpDown Members | System.WinForms Namespace | DownButton | Minimum | Maximum | ParseEditText | UpdateEditText