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

Actually goes and fires the onSelectedIndexChanged 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.onSelectedIndexChanged(e); to ensure the event is still fired to external listeners

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

Parameters

e
Event object with the details

See Also

TabBase Class | TabBase Members | System.WinForms Namespace