System.Win.Registry.TRegDataType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRegDataType = (rdUnknown, rdString, rdExpandString, rdInteger, rdBinary);

C++

enum DECLSPEC_DENUM TRegDataType : unsigned char { rdUnknown, rdString, rdExpandString, rdInteger, rdBinary };

Properties

Type Visibility Source Unit Parent
enum public
System.Win.Registry.pas
System.Win.Registry.hpp
System.Win.Registry System.Win.Registry

Description

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

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.