DataGrid::ColumnHeadersVisible Property
.NET Framework (current version)
Gets or sets a value indicating whether the column headers of a table are visible.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::Booleantrue if the column headers are visible; otherwise, false. The default is true.
The following code example toggles the ColumnHeadersVisible property.
Private Sub ToggleColumnHeadersVisible(ByVal myGrid As DataGrid) myGrid.ColumnHeadersVisible = myGrid.ColumnHeadersVisible Xor True End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: