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!

DataColumn PropertyChanged Event

Occurs whenever a property value of the DataColumn changes.

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

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

Parameters

sender
The source of the event.
e
A PropertyChangedEventArgs that contains the event data. The following PropertyChangedEventArgs properties provide information specific to this event.
Property Description
PropertyName
Gets the name of the property that changed.

Remarks

The event occurs when the values of the DataColumn properties change.

See Also

DataColumn Class | DataColumn MembersTopic | System.Data Namespace