DataGridColumnStyle.DataGridTableStyle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the DataGridTableStyle for the column.
public:
virtual property System::Windows::Forms::DataGridTableStyle ^ DataGridTableStyle { System::Windows::Forms::DataGridTableStyle ^ get(); };
[System.ComponentModel.Browsable(false)]
public virtual System.Windows.Forms.DataGridTableStyle DataGridTableStyle { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataGridTableStyle : System.Windows.Forms.DataGridTableStyle
Public Overridable ReadOnly Property DataGridTableStyle As DataGridTableStyle
Property Value
The DataGridTableStyle that contains the current DataGridColumnStyle.
- Attributes
Examples
The following code example prints the MappingName of a DataGridTableStyle that contains a DataGridColumnStyle.
Private Sub PrintTableMappingName _
(ByVal myColumnStyle As DataGridColumnStyle)
Console.WriteLine _
(myColumnStyle.DataGridTableStyle.MappingName)
End Sub
Applies to
See also
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.