DataGrid.UnSelect(Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した行の選択を解除します。
public:
void UnSelect(int row);
public void UnSelect (int row);
member this.UnSelect : int -> unit
Public Sub UnSelect (row As Integer)
パラメーター
- row
- Int32
選択を解除する行のインデックス。
例
次のコード例は、このメンバーの使用方法を示しています。
// On Click of Button "Unselect Row" this event is raised.
private:
void UnselectRow_Clicked( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Unselect the current row from the Datagrid
myDataGrid->UnSelect( myDataGrid->CurrentRowIndex );
}
// On Click of Button "Unselect Row" this event is raised.
private void UnselectRow_Clicked(object sender, EventArgs e)
{
// Unselect the current row from the Datagrid
myDataGrid.UnSelect(myDataGrid.CurrentRowIndex);
}
' On Click of Button "Unselect Row" this event is raised.
Private Sub UnselectRow_Clicked(ByVal sender As Object, ByVal e As EventArgs)
' Unselect the current row from the Datagrid
myDataGrid.UnSelect(myDataGrid.CurrentRowIndex)
End Sub
注釈
特定の行の選択状態を IsSelected操作するには、このメソッドと 、 Selectメソッド ResetSelection を使用します。