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!

ColumnsCollection.OnCollectionChanged

Raises the OnCollectionChanged event.

[Visual Basic]
Overridable Protected Sub OnCollectionChanged( _
   ByVal ccevent As CollectionChangeEventArgs _
)
[C#]
protected virtual void OnCollectionChanged(
   CollectionChangeEventArgs ccevent
);
[C++]
protected: virtual void OnCollectionChanged(
   CollectionChangeEventArgs* ccevent
);
[JScript]
protected function OnCollectionChanged(
   ccevent : CollectionChangeEventArgs
);

Parameters

ccevent
A CollectionChangeEventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD.

Notes to Inheritors: When overriding OnCollectionChanged in an inheriting class, be sure to call the base class's OnCollectionChanged method.

See Also

ColumnsCollection Class | ColumnsCollection Members | System.Data Namespace