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!

DataGridTable.EndEdit

Requests an end to an edit operation taking place.

[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 edit.
rowNumber
The number of the edited row.
shouldAbort
[To be supplied.]

Return Value

true if the edit operation ends successfully; otherwise, false.

See Also

DataGridTable Class | DataGridTable Members | System.WinForms Namespace