enum RegistryValueType in module com::sun::star::registry::

(Global Index)

Syntax

enum RegistryValueType;

Description

represents all possible types of a key value.

An ASCII value and a string value will both be handled with type string. But interns will be handled differently. Normally the idl string represents a unicode string.

Values Summary

NOT_DEFINED the type of the key is not defined.

LONG the type of the key is long.

ASCII the type of the key is ASCII.

STRING the type of the key is a string.

BINARY the type of the key is binary.

LONGLIST the type of the key is LONGLIST.

ASCIILIST the type of the key is a ASCIILIST.

STRINGLIST the type of the key is a STRINGLIST.

Values Details



NOT_DEFINED

Syntax

NOT_DEFINED,

Description

the type of the key is not defined.


LONG

Syntax

LONG,

Description

the type of the key is long.


ASCII

Syntax

ASCII,

Description

the type of the key is ASCII.


STRING

Syntax

STRING,

Description

the type of the key is a string.


BINARY

Syntax

BINARY,

Description

the type of the key is binary.


LONGLIST

Syntax

LONGLIST,

Description

the type of the key is LONGLIST.


ASCIILIST

Syntax

ASCIILIST,

Description

the type of the key is a ASCIILIST.


STRINGLIST

Syntax

STRINGLIST,

Description

the type of the key is a STRINGLIST.

Top of Page