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!

TabBase.OnDrawItem

Actually goes and fires the OnDrawItem event. Inheriting controls should use this to know when the event is fired [this is preferable to adding an event handler on yourself for this event]. They should, however, remember to call base.onDrawItem(e); to ensure the event is still fired to external listeners

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

Parameters

e
DrawItemEventArgs object with the details

See Also

TabBase Class | TabBase Members | System.WinForms Namespace