[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Boolean field class type
Source position: db.pas line 679
type TBooleanField = class(TField) end; |
||
public |
||
constructor Create(); override; |
|
Create a new instance of the TBooleanField class. |
property Value: Boolean; [rw] |
|
Value of the field as a boolean value |
published |
||
property DisplayValues: string; [rw] |
|
Textual representation of the true and false values |
|
Boolean field class type |
|
| | ||
|
Provide access to the contents of a single field in a record |
|
| | ||
| | ||
| | ||
TBooleanField is the field class used by TDataset whenever it needs to manage boolean data (TField.DataType equals ftBoolean). It overrides some properties and methods of TField to be able to work with boolean data.
It should never be necessary to create an instance of TBooleanField manually, a field of this class will be instantiated automatically for each boolean field when a dataset is opened.
|
Base class for records-based data-access |
|
|
Provide access to the contents of a single field in a record |