EMS.ResourceTypes.TAPIDoc.TAPIDocInfo

De RAD Studio API Documentation
Aller à : navigation, rechercher

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() {}
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
EMS.ResourceTypes.pas
EMS.ResourceTypes.hpp
EMS.ResourceTypes TAPIDoc

Description

Embarcadero Technologies ne possède pas d'informations supplémentaires pour le moment. Veuillez nous aider à documenter cette rubrique en utilisant la page Discussion !