System.TypInfo.TTypeInfoFieldAccessor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TTypeInfoFieldAccessor = record
  strict private
    FData: PByte;
  public
    procedure SetData(const Data: PByte); inline;
    class operator Equal(const Left, Right: TTypeInfoFieldAccessor): Boolean; inline;
    function UTF8Length: integer; inline;
    function ToString: string;
{$IFNDEF NEXTGEN}
    function ToShortUTF8String: ShortString; inline;
{$ENDIF !NEXTGEN}
    function ToByteArray: TBytes;
    function Tail: PByte; inline;
  end;

C++

struct DECLSPEC_DRECORD TTypeInfoFieldAccessor
{
private:
    System::Byte *FData;
public:
    void __fastcall SetData(const System::PByte Data);
    static bool __fastcall _op_Equality(const TTypeInfoFieldAccessor Left, const TTypeInfoFieldAccessor Right);
    int __fastcall UTF8Length(void);
    System::UnicodeString __fastcall ToString(void);
    System::ShortString __fastcall ToShortUTF8String(void);
#ifndef _WIN64
    System::DynamicArray<System::Byte> __fastcall ToByteArray(void);
#else /* _WIN64 */
    System::TArray__1<System::Byte> __fastcall ToByteArray(void);
#endif /* _WIN64 */
    System::PByte __fastcall Tail(void);
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!