RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
AnsiStringBase::GetRec Method ()

Gets a struct describing a System::AnsiStringBase.

Pascal
function GetRec: const StrRec&;
function GetRec: StrRec&;
C++
const StrRec& GetRec() const;
StrRec& GetRec();

System::AnsiStringBase::GetRec gets a struct that describes the contents of a System::AnsiStringBase instance. The struct has this format:

struct StrRec {
  unsigned short codePage;
  unsigned short elemSize;
  int refCnt;
  int length;
};      
    

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!