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!

Form.OnClosing

The Closing event is fired when the form is closed.

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

Parameters

e
[To be supplied.]

See Also

Form Class | Form Members | System.WinForms Namespace | AddOnClosing | RemoveOnClosing | System.ComponentModel.CancelEvent