REST.Backend.MetaTypes.TBackendClassValue

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

  TBackendClassValue = record
  private
    FData: IBackendMetaClass;
    function GetBackendClassName: string;
    function GetDataType: string;
  public
    constructor Create(const Intf: IBackendMetaClass);
    function TryGetBackendClassName(out AValue: string): Boolean;
    function TryGetDataType(out AValue: string): Boolean;
    property BackendClassName: string read GetBackendClassName;
    property BackendDataType: string read GetDataType;
  end;

C++

struct DECLSPEC_DRECORD TBackendClassValue
{
private:
    _di_IBackendMetaClass FData;
    System::UnicodeString __fastcall GetBackendClassName();
    System::UnicodeString __fastcall GetDataType();
public:
    __fastcall TBackendClassValue(const _di_IBackendMetaClass Intf);
    bool __fastcall TryGetBackendClassName(/* out */ System::UnicodeString &AValue);
    bool __fastcall TryGetDataType(/* out */ System::UnicodeString &AValue);
    __property System::UnicodeString BackendClassName = {read=GetBackendClassName};
    __property System::UnicodeString BackendDataType = {read=GetDataType};
    TBackendClassValue() {}
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
REST.Backend.MetaTypes.pas
REST.Backend.MetaTypes.hpp
REST.Backend.MetaTypes REST.Backend.MetaTypes

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。