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!

DataGrid CancelCommand Event

[To be supplied.]

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

[Visual Basic]
Protected Sub DataGridName_CancelCommand( _
   ByVal sender As Object, _
   ByVal e As DataGridCommandEventArgs _
)
[C#]
protected void DataGridName_CancelCommand(
   object sender,
   DataGridCommandEventArgs e
);
[C++]
protected: void DataGridName_CancelCommand(
   Object* sender,
   DataGridCommandEventArgs* e
);
[JScript]
protected DataGridName_CancelCommand(
   sender : Object,
   e : DataGridCommandEventArgs
);

Parameters

sender
The source of the event.
e
A DataGridCommandEventArgs that contains the event data. The following DataGridCommandEventArgs properties provide information specific to this event.
Property Description
CommandSource
[To be supplied.]
Item
[To be supplied.]

See Also

DataGrid Class | DataGrid MembersTopic | System.Web.UI.WebControls Namespace