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 PropertyValueChanged Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A PropertyGridInternal.PropertyValueChangedEventArgs that contains the event data.

See Also

PropertyGrid Class | PropertyGrid MembersTopic | System.WinForms Namespace