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!

CheckBox.OnCheckedChanged

Raises the System.WinForms.CheckBox.CheckedChanged event.

[Visual Basic]
Overridable Protected Sub OnCheckedChanged( _
   ByVal e As EventArgs _
)
[C#]
protected virtual void OnCheckedChanged(
   EventArgs e
);
[C++]
protected: virtual void OnCheckedChanged(
   EventArgs* e
);
[JScript]
protected function OnCheckedChanged(
   e : EventArgs
);

Parameters

e
An EventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD.

Notes to Inheritors: When overriding OnCheckedChanged in a derived class, be sure to call the base class's OnCheckedChanged method.

See Also

CheckBox Class | CheckBox Members | System.WinForms Namespace | AddOnCheckedChanged | RemoveOnCheckedChanged