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.DownButton

Decrements the value of the up-down control.

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

Remarks

When the DownButton method is called, either in code or by the click of the down 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 | UpButton | Minimum | Maximum | ParseEditText | UpdateEditText