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!

PropertyGrid PropertyTabChanged Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the PropertyTabChanged event.

[Visual Basic]
Private Sub PropertyGridName_PropertyTabChanged( _
   ByVal sender As Object, _
   ByVal e As PropertyTabChangedEventArgs _
)
[C#]
private void PropertyGridName_PropertyTabChanged(
   object sender,
   PropertyTabChangedEventArgs e
);
[C++]
private: void PropertyGridName_PropertyTabChanged(
   Object* sender,
   PropertyTabChangedEventArgs* e
);
[JScript]
private PropertyGridName_PropertyTabChanged(
   sender : Object,
   e : PropertyTabChangedEventArgs
);

Parameters

sender
The source of the event.
e
A PropertyTabChangedEventArgs that contains the event data. The following PropertyTabChangedEventArgs properties provide information specific to this event.
Property Description
NewTab
[To be supplied.]
OldTab
[To be supplied.]

See Also

PropertyGrid Class | PropertyGrid MembersTopic | System.WinForms Namespace