|
Syntax
- short getUserFieldCount
();
Returns
-
the number of user fields available in the document information.
Syntax
- string getUserFieldName
(
- short nIndex )
- raises ( com::sun::star::lang::ArrayIndexOutOfBoundsException );
Returns
-
the name of the user field at the specified position.
Syntax
- string getUserFieldValue
(
- short nIndex )
- raises ( com::sun::star::lang::ArrayIndexOutOfBoundsException );
Returns
-
the value of the user field at the specified position.
Syntax
- void setUserFieldName
(
- short nIndex,
- string aName )
- raises ( com::sun::star::lang::ArrayIndexOutOfBoundsException );
Description
changes the name of one of the user fields.
Syntax
- void setUserFieldValue
(
- short nIndex,
- string aValue )
- raises ( com::sun::star::lang::ArrayIndexOutOfBoundsException );
Description
changes the value of the nIndex th user field.
|