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