Data.Bind.ObjectScope.TGeneratorFieldType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGeneratorFieldType = (ftString, ftInteger, ftSingle, ftBoolean,
ftBitmap, ftUInteger, ftCurrency, ftDateTime, ftTStrings, ftDate, ftTime, ftChar);

C++

enum DECLSPEC_DENUM TGeneratorFieldType : unsigned char { ftString, ftInteger, ftSingle, ftBoolean, ftBitmap, ftUInteger, ftCurrency, ftDateTime, ftTStrings, ftDate, ftTime, ftChar };

Properties

Type Visibility Source Unit Parent
enum public
Data.Bind.ObjectScope.pas
Data.Bind.ObjectScope.hpp
Data.Bind.ObjectScope Data.Bind.ObjectScope

Description

Is an enumeration of field types used by generators.

A variable of TGeneratorFieldType type can have one of the following values.

Item Description
ftString The field holds a value that is a string.
ftInteger The field holds a value that is an integer.
ftSingle The field holds a value that is a single-precision floating point.
ftBoolean The field holds a value that is a Boolean.
ftBitmap The field holds a value that is a bitmap image.
ftUInteger The field holds a value that is an unsigned integer.
ftCurrency The field holds a value that is of currency type.
ftDateTime The field holds a value that is of date and time type.
ftTStrings The field holds a value that is of TStrings type.

See Also