interface XExactName in module com::sun::star::beans::

(Global Index)

Syntax

interface XExactName : com::sun::star::uno::XInterface ;

Description

provides a method of changing names for converting an approximate name to an existing name.

One field of application is the conversion of case-insensitive names to the existing names.

Example: A basic interpreter ignores the case of the names. So it must query the XExactName interface and then call the method.

See also

XPropertySet

See also

XIntrospectionAccess

See also

XNameAccess

Method Summary

getExactName

Method Details



getExactName

Syntax

string getExactName (
string aApproximateName );

Description

Returns

the exact name for a given aprroximate name.

For example "getExactName" could be returned for "GETEXACTNAME" when "GETEXACTNAME" was used by a case insesitive scripting language.

Top of Page