IBX.IBCustomDataSet.TIBTimeField

Delphi
TIBTimeField = class(TTimeField)
C++
class PASCALIMPLEMENTATION TIBTimeField : public Data::Db::TTimeField
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | IBX.IBCustomDataSet.pas IBX.IBCustomDataSet.hpp |
IBX.IBCustomDataSet | IBX.IBCustomDataSet |
Description
TTimeField represents a time field in a dataset.
IBX.IBCustomDataSet.TIBTimeField inherits from Data.DB.TTimeField. All content below this line refers to Data.DB.TTimeField.
TTimeField represents a time field in a dataset.
TTimeField encapsulates the fundamental behavior common to fields that contain time values. Time fields contain time values (without any date), which they manage using the TDateTime type (Delphi) or class (C++).
If you use the Fields editor at design time to create a persistent field component for the time field, you can access it by name at runtime. When using dynamic field components, you can access the TTimeField instance using the dataset's Fields property or FieldByName method.
See Also