Data.DB.TField.Visible

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Visible: Boolean read FVisible write SetVisible default True;

C++

__property bool Visible = {read=FVisible, write=SetVisible, default=1};

Properties

Type Visibility Source Unit Parent
property published
Data.DB.pas
Data.DB.hpp
Data.DB TField

Description

Determines whether the field appears in a data grid.

To hide a field in a data grid, set Visible to False. If Visible is True, the field appears in the grid.

Note: The Visible property has no effect if the grid has an explicit Columns value for the field. It also has no effect on controls other than TDBGrid, such as TDBEdit.

See Also