ColumnEditingEventHandler Delegate
Identifies the method that will handle the columnEditing event of a DataGrid control.
package com.ms.wfc.data.ui
public multicast delegate
void ColumnEditingEventHandler( Objectsender**, ColumnEditingEvent** e );
Remarks
The syntax of the ColumnEditingEventHandler delegate specifies the signature for the event handler, where sender is the source of the event and e is a ColumnEditingEvent object that provides the event data.
When you create a ColumnEditingEventHandler delegate, you specify the method that will handle the event. Once the delegate is assigned to the event, the handler method is automatically invoked whenever the event is triggered.