[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Base class for all numerical data field classe
Source position: db.pas line 518
type TNumericField = class(TField) end; |
||
public |
||
constructor Create(); override; |
|
Create a new instance of TNumericField |
published |
||
property Alignment: TAlignment; |
|
Alignment of the field |
property DisplayFormat: string; [rw] |
|
Format string for display of numerical data |
property EditFormat: string; [rw] |
|
Format string for editing of numerical data |
|
Base class for all numerical data field classe |
|
| | ||
|
Provide access to the contents of a single field in a record |
|
| | ||
| | ||
| | ||
TNumericField is an abstract class which overrides some of the methods of TField to handle numerical data. It also introduces or publishes a couple of properties that are only relevant in the case of numerical data, such as TNumericField.DisplayFormat and TNumericField.EditFormat.
Since TNumericField is an abstract class, it must never be instantiated directly. Instead one of the descendent classes should be created.
|
Provide access to the contents of a single field in a record |
|
|
Format string for display of numerical data |
|
|
Format string for editing of numerical data |
|
|
Alignment for this field |
|
|
Alias for TLongintField |
|
|
Field class for 64-bit signed integer data |
|
|
Class for floating point values |
|
|
Field class for Binary Coded Decimal (BCD) values |