Data.DB.TField.Visible
[–] Properties | |
---|---|
Type: property | |
Visibility: published | |
Source: Data.DB.pas Data.DB.hpp
| |
Unit: Data.DB | |
Parent: TField |
Delphi
property Visible: Boolean read FVisible write SetVisible default True;
C++
__property bool Visible = {read=FVisible, write=SetVisible, default=1};
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.