RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Registry.TRegDataType Enumeration

TRegDataType is a type used by the GetDataInfo method of TRegistery.

Pascal
TRegDataType = (
  rdUnknown,
  rdString,
  rdExpandString,
  rdInteger,
  rdBinary
);
C++
enum TRegDataType {
  rdUnknown,
  rdString,
  rdExpandString,
  rdInteger,
  rdBinary
};

Registry

TRegDataType is a type used by the GetDataInfo method of TRegistery.It can have the following values:

Value 
Meaning 
rdUnknown  
Data value type is of no defined value type.  
rdString  
Data value type is a null-terminated string. It is a Unicode or ANSI string depending on whether the application calls the Unicode or ANSI string functions.  
rdExpandString  
Data value type is a null-terminated string that contains unexpanded references to environment variables (for example, "%PATH%"). It is a Unicode or ANSI string depending on whether the application calls the Unicode or ANSI string functions.  
rdInteger  
Data value type is a32-bit number.  
rdBinary  
Data value type is binary data, in any form.  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!