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 ValueChanged Event

Occurs when the Value property has been changed in some way.

The following declaration shows the syntax for a method that handles the ValueChanged event.

[Visual Basic]
Private Sub NumericUpDownName_ValueChanged( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void NumericUpDownName_ValueChanged(
   object sender,
   EventArgs e
);
[C++]
private: void NumericUpDownName_ValueChanged(
   Object* sender,
   EventArgs* e
);
[JScript]
private NumericUpDownName_ValueChanged(
   sender : Object,
   e : EventArgs
);

Parameters

sender
The source of the event.
e
An EventArgs that contains the event data. The following EventArgs properties provide information specific to this event.
Property Description
ExtendedInfo
Holds a reference to an object that manages the event's state.

Remarks

For the OnValueChanged event to occur, the Value property may be changed in code, by the user typing in a new value, or clicking the up or down button.

See Also

NumericUpDown Class | NumericUpDown MembersTopic | System.WinForms Namespace | NumericUpDown.OnValueChanged | NumericUpDown.Value