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!

DataGridBoolColumn.Commit

Initiates a request to complete an editing procedure.

[Visual Basic]
Overrides Public Function Commit( _
   ByVal dataSource As ListManager, _
   ByVal rowNum As Integer _
) As Boolean
[C#]
public override bool Commit(
   ListManager dataSource,
   int rowNum
);
[C++]
public: override bool Commit(
   ListManager* dataSource,
   int rowNum
);
[JScript]
public override function Commit(
   dataSource : ListManager,
   rowNum : int
) : Boolean;

Parameters

dataSource
The DataView of the edited column.
rowNum
The number of the edited row.

Return Value

true if the editing procedure committed successfully; otherwise, false.

See Also

DataGridBoolColumn Class | DataGridBoolColumn Members | System.WinForms Namespace