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

Gets a value indicating whether a specified row is selected.

[Visual Basic]
Public Function IsSelected( _
   ByVal row As Integer _
) As Boolean
[C#]
public bool IsSelected(
   int row
);
[C++]
public: bool IsSelected(
   int row
);
[JScript]
public function IsSelected(
   row : int
) : Boolean;

Parameters

row
The number of the row you interested in.

Return Value

true if the row is selected; otherwise, false.

See Also

DataGrid Class | DataGrid Members | System.WinForms Namespace