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

Raises the OnValueChanged event.

[Visual Basic]
Protected Sub OnValueChanged( _
   ByVal source As Object, _
   ByVal e As EventArgs _
)
[C#]
protected void OnValueChanged(
   object source,
   EventArgs e
);
[C++]
protected: void OnValueChanged(
   Object* source,
   EventArgs* e
);
[JScript]
protected function OnValueChanged(
   source : Object,
   e : EventArgs
);

Parameters

source
The source of the event.
e
[To be supplied.]

Remarks

When you create a System.WinForms.NumericUpDown.ValueChanged delegate, you identify the method that will handle the event. To associate the event with your event-handling method, add an instance of the delegate to the event. The event-handling method is called whenever the event occurs, until you remove the delegate. For more information about delegates, see [DelegateTopicTBD].

See Also

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