:: com :: sun :: star :: linguistic2 ::

interface XConversionPropertyType

Methods' Summary
setPropertyType sets the property type for the specified entry.  
getPropertyType returns the property type for the specified entry.  
Methods' Details
setPropertyType
void
setPropertyType( [in] string  aLeftText,
[in] string  aRightText,
[in] short  nPropertyType )
raises( ::com::sun::star::container::NoSuchElementException,
::com::sun::star::lang::IllegalArgumentException );

Description
sets the property type for the specified entry.

The conversion entry is specified by the pair ( aLeftText, aRightText ).

Parameter aLeftText
the left text of the dictionary entry.
Parameter aRightText
the right text of the dictionary entry.
Parameter nPropertyType
the property type to be set for the entry
getPropertyType
short
getPropertyType( [in] string  aLeftText,
[in] string  aRightText )
raises( ::com::sun::star::container::NoSuchElementException );

Description
returns the property type for the specified entry.

The conversion entry is specified by the pair ( aLeftText, aRightText ).

Parameter aLeftText
the left text of the dictionary entry.
Parameter aRightText
the right text of the dictionary entry.
Returns
returns the property type for the entry with the specified left text.
Top of Page