DataGrid.UnSelect(Int32) Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Desseleciona uma linha especificada.
public:
void UnSelect(int row);
public void UnSelect(int row);
member this.UnSelect : int -> unit
Public Sub UnSelect (row As Integer)
Parâmetros
- row
- Int32
O índice da linha a desselecionar.
Exemplos
O seguinte exemplo de código demonstra a utilização deste elemento.
// 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
Observações
Use este método com os IsSelected, Select, e ResetSelection para manipular o estado de seleção de uma determinada linha.