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.EndEdit

Requests an end to an edit operation taking place on the DataGrid control.

[Visual Basic]
Overridable Public Function EndEdit( _
   ByVal gridColumn As DataGridColumn, _
   ByVal rowNumber As Integer, _
   ByVal shouldAbort As Boolean _
) As Boolean
[C#]
public virtual bool EndEdit(
   DataGridColumn gridColumn,
   int rowNumber,
   bool shouldAbort
);
[C++]
public: virtual bool EndEdit(
   DataGridColumn* gridColumn,
   int rowNumber,
   bool shouldAbort
);
[JScript]
public function EndEdit(
   gridColumn : DataGridColumn,
   rowNumber : int,
   shouldAbort : Boolean
) : Boolean;

Parameters

gridColumn
The DataGridColumn to cease editing.
rowNumber
The number of the row to cease editing.
shouldAbort
Set to true if the current operation should be stopped.

Return Value

true if the editing operation ceases; otherwise, false.

See Also

DataGrid Class | DataGrid Members | System.WinForms Namespace | BeginEdit