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!

GridColumnsCollection CollectionChanged Event

Occurs when a change is made to the GridColumnsCollection.

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

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

Parameters

sender
The source of the event.
e
A System.ComponentModel.CollectionChangeEventArgs that contains the event data.

See Also

GridColumnsCollection Class | GridColumnsCollection MembersTopic | System.WinForms Namespace