Data.Bind.ObjectScope.TValueGeneratorDescription
| [–] Properties | |
|---|---|
| Type:  record struct 
 | |
| Visibility: public | |
| Source:  Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp 
 | |
| Unit: Data.Bind.ObjectScope | |
| Parent: Data.Bind.ObjectScope | |
Delphi
TValueGeneratorDescription = record
C++
struct DECLSPEC_DRECORD TValueGeneratorDescription
{
private:
    TValueGeneratorClass FClassType;
    System::UnicodeString FFormatFieldName;
    System::UnicodeString FUnitName;
public:
    __fastcall TValueGeneratorDescription(TValueGeneratorClass AClassType, const System::UnicodeString AFormatFieldName, const System::UnicodeString AUnitName);
    __property TValueGeneratorClass ClassType = {read=FClassType};
    __property System::UnicodeString FormatFieldName = {read=FFormatFieldName};
    __property System::UnicodeString UnitName = {read=FUnitName};
    TValueGeneratorDescription() {}
};
Description
Is a record that contains generator descriptions.
ClassType holds information regarding the metaclass of the value generator.
FormatFieldName is a string used to format a field's name (for instance, 'StringField%d').
UnitName is used at design time to add the unit to the uses list.