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!

IDataGridEditingService.EndEdit

Requests an end to an edit operation taking place.

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

Parameters

gridColumn
The DataGridColumn of the cell to cease editing.
rowNumber
The number of the row to cease editing.
shouldAbort
True if an abort operation is requested.

See Also

IDataGridEditingService Interface | IDataGridEditingService Members | System.WinForms Namespace