[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'System' (#rtl)

TVarRec

Record describing an element in an array of const

Declaration

Source position: objpash.inc line 385

type TVarRec = record

  case VType: SizeInt of

    vtInteger: (

        VInteger: LongInt;

  

Integer value

      );

    vtBoolean: (

        VBoolean: Boolean;

  

Boolean value

      );

    vtChar: (

        VChar: Char;

  

Character value

      );

    vtWideChar: (

        VWideChar: WideChar;

  

Widechar value

      );

    vtExtended: (

        VExtended: PExtended;

  

Extended value

      );

    vtString: (

        VString: PShortString;

  

String value

      );

    vtPointer: (

        VPointer: Pointer;

  

Pointer value

      );

    vtPChar: (

        VPChar: PChar;

  

PChar value (null-terminated string)

      );

    vtObject: (

        VObject: TObject;

  

Object value (instance pointer)

      );

    vtClass: (

        VClass: TClass;

  

Class pointer value (VMT pointer)

      );

    vtPWideChar: (

        VPWideChar: PWideChar;

  

Widechar value

      );

    vtAnsiString: (

        VAnsiString: Pointer;

  

Ansistring value

      );

    vtCurrency: (

        VCurrency: PCurrency;

  

Currency value

      );

    vtVariant: (

        VVariant: PVariant;

  

Variant value

      );

    vtInterface: (

        VInterface: Pointer;

  

Interface value

      );

    vtWideString: (

        VWideString: Pointer;

  

Widestring value

      );

    vtInt64: (

        VInt64: PInt64;

  

Int64 value

      );

    vtQWord: (

        VQWord: PQWord;

  

QWord value

      );

end;

Description

TVarRec is a record generated by the compiler for each element in a array of const call. The procedure that receives the constant array receives an array of TVarRec elements, with lower bound zero and high bound equal to the number of elements in the array minus one (as returned by High(Args))

The latest version of this document can be found at lazarus-ccr.sourceforge.net.