DataGrid::CaptionVisible Property
.NET Framework (current version)
Gets or sets a value that indicates whether the grid's caption is visible.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::Booleantrue if the caption is visible; otherwise, false. The default is true.
If CaptionVisible is false, the Back button, ParentRow button, and caption will not be seen. Because navigation is limited, links to child tables will also not be visible and AllowNavigation will be set to None.
The following code example toggles the CaptionVisible property.
Private Sub ToggleCaptionVisible(ByVal myGrid As DataGrid) ' Toggle the CaptionVisibleProperty. myGrid.CaptionVisible = myGrid.CaptionVisible Xor True End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: