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!

StatusBar.OnPanelClick

Raises the OnPanelClick event.

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

Parameters

e
A StatusBarPanelClickEventArgs that contains the event data.

Remarks

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

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

See Also

StatusBar Class | StatusBar Members | System.WinForms Namespace