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

interface XDictionary1
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::container::XNamed
    |
    +-XDictionary1
[ DEPRECATED ]
Description

Methods' Summary
getDictionaryType
setActive
isActive
getCount
getLanguage
setLanguage
getEntry
addEntry
add
remove
isFull
getEntries
clear
addDictionaryEventListener
removeDictionaryEventListener
Methods' Details
getDictionaryType
DictionaryType
getDictionaryType();
 
 

setActive
void
setActive(
 
[in] boolean
 
bActivate );

isActive
boolean
isActive();
 
 

getCount
short
getCount();
 
 

getLanguage
short
getLanguage();
 
 

setLanguage
void
setLanguage(
 
[in] short
 
nLang );

getEntry
XDictionaryEntry
getEntry(
 
[in] string
 
aWord );

addEntry
boolean
addEntry(
 
[in] XDictionaryEntry
 
xDicEntry );

add
boolean
add(
 
[in] string
[in] boolean
[in] string
 
aWord,
bIsNegative,
aRplcText );

remove
boolean
remove(
 
[in] string
 
aWord );

isFull
boolean
isFull();
 
 

getEntries
sequence< XDictionaryEntry >
getEntries();
 
 

clear
void
clear();
 
 

addDictionaryEventListener
boolean
addDictionaryEventListener(
 
[in] XDictionaryEventListener
 
xListener );

removeDictionaryEventListener
boolean
removeDictionaryEventListener(
 
[in] XDictionaryEventListener
 
xListener );

Top of Page