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

Raises the OnDrawItem event.

[Visual Basic]
Overridable Protected Sub OnDrawItem( _
   ByVal sbdievent As StatusBarDrawItemEventArgs _
)
[C#]
protected virtual void OnDrawItem(
   StatusBarDrawItemEventArgs sbdievent
);
[C++]
protected: virtual void OnDrawItem(
   StatusBarDrawItemEventArgs* sbdievent
);
[JScript]
protected function OnDrawItem(
   sbdievent : StatusBarDrawItemEventArgs
);

Parameters

sbdievent
A StatusBarDrawItemEventArgs that contains the event data.

Remarks

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

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

See Also

StatusBar Class | StatusBar Members | System.WinForms Namespace