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 );
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].
NumericUpDown Class | NumericUpDown Members | System.WinForms Namespace | Value | OnValueChanged