Vcl.DBGrids.TColumn.Visible

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  Visible: Boolean read GetVisible write SetVisible;

C++

__property bool Visible = {read=GetVisible, write=SetVisible, nodefault};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TColumn

Description

Specifies whether the column is visible in the grid.

To hide a column in the grid, set Visible to false. If Visible is true, and the field's Visible property is true, the column will appear in the grid. This property only determines whether the column is allowed to be drawn/shown. The Showing property reflects the actual display ability of the column based on additional factors.

See Also