EMS.ResourceTypes.TAPIDoc.TAPIDocInfo

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

    TAPIDocInfo = record
    private
      FVersion: string;
      FTitle: string;
      FDescription: string;
      FTermsOfUse: string;
      FContact:TAPIDocContactInfo;
      FLicense: TAPIDocLicenseInfo;
    public
      constructor Create(const AVersion, ATitle, ADescription: string);
      property Version: string read FVersion;
      property Title: string read FTitle;
      property Description: string read FDescription;
      property TermsOfUse: string read FTermsOfUse write FTermsOfUse;
      property Contact: TAPIDocContactInfo read FContact write FContact;
      property License: TAPIDocLicenseInfo read FLicense write FLicense;
    end;

C++

struct DECLSPEC_DRECORD TAPIDocInfo
{
private:
    System::UnicodeString FVersion;
    System::UnicodeString FTitle;
    System::UnicodeString FDescription;
    System::UnicodeString FTermsOfUse;
    TAPIDoc::TAPIDocContactInfo FContact;
    TAPIDoc::TAPIDocLicenseInfo FLicense;
public:
    __fastcall TAPIDocInfo(const System::UnicodeString AVersion, const System::UnicodeString ATitle, const System::UnicodeString ADescription);
    __property System::UnicodeString Version = {read=FVersion};
    __property System::UnicodeString Title = {read=FTitle};
    __property System::UnicodeString Description = {read=FDescription};
    __property System::UnicodeString TermsOfUse = {read=FTermsOfUse, write=FTermsOfUse};
    __property TAPIDoc::TAPIDocContactInfo Contact = {read=FContact, write=FContact};
    __property TAPIDoc::TAPIDocLicenseInfo License = {read=FLicense, write=FLicense};
    TAPIDocInfo() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
EMS.ResourceTypes.pas
EMS.ResourceTypes.hpp
EMS.ResourceTypes TAPIDoc

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.