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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.