DataGridTableStyle.DataGrid Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define o controle DataGrid para a tabela desenhada.
public:
virtual property System::Windows::Forms::DataGrid ^ DataGrid { System::Windows::Forms::DataGrid ^ get(); void set(System::Windows::Forms::DataGrid ^ value); };
[System.ComponentModel.Browsable(false)]
public virtual System.Windows.Forms.DataGrid DataGrid { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.DataGrid : System.Windows.Forms.DataGrid with get, set
Public Overridable Property DataGrid As DataGrid
Valor da propriedade
O DataGrid controle que exibe a tabela.
- Atributos
Exemplos
O exemplo de código a seguir imprime a CurrentCell System.Windows.Forms.DataGrid exibição de um DataGridTableStyle.
private:
void GetSelectedIndex( DataGridTableStyle^ myGridTable )
{
/* Get the name of the DataGrid of the DataGridTable
passed as an argument. */
Console::WriteLine( myGridTable->DataGrid->CurrentCell.ToString() );
}
private void GetSelectedIndex(DataGridTableStyle myGridTable)
{
/* Get the name of the DataGrid of the DataGridTable
passed as an argument. */
Console.WriteLine(myGridTable.DataGrid.CurrentCell.ToString());
}
Private Sub GetSelectedIndex(myGridTable As DataGridTableStyle)
' Get the name of the DataGrid of the DataGridTable
' passed as an argument.
Console.WriteLine(myGridTable.DataGrid.CurrentCell.ToString())
End Sub
Comentários
O System.Windows.Forms.DataGrid controle exibe dados na forma de uma grade. O DataGridTableStyle é um objeto que representa a grade desenhada. A System.Windows.Forms.DataGrid propriedade retorna uma referência ao controle que está exibindo a grade.
A DataGrid propriedade é definida quando um DataGridTableStyle é adicionado a um System.Windows.Forms.DataGrid controle.GridTableStylesCollection Você não deve tentar definir essa propriedade, a menos que esteja substituindo-a e criando um designer para um controle de usuário que incorpore o DataGrid controle.