constants group DictionaryEventFlags in module com::sun::star::linguistic2::

(Global Index)

Syntax

constants group DictionaryEventFlags;

Description

flags used for the event type in dictionary events.

These flags represent the types of event that a dictionary may broadcast.

See also

DictionaryEvent

Constants Summary

ADD_ENTRY indicates that at least one entry has been added.

DEL_ENTRY indicates that at least one entry has been deleted.

CHG_NAME the dictionary's name has changed.

CHG_LANGUAGE the dictionary's language has changed.

ENTRIES_CLEARED all entries have been removed.

ACTIVATE_DIC used when the dictionary was activated.

DEACTIVATE_DIC used when the dictionary was deactivated.

Field Details



ADD_ENTRY

Syntax

const short  ADD_ENTRY = 1;

Description

indicates that at least one entry has been added.


DEL_ENTRY

Syntax

const short  DEL_ENTRY = 2;

Description

indicates that at least one entry has been deleted.


CHG_NAME

Syntax

const short  CHG_NAME = 4;

Description

the dictionary's name has changed.


CHG_LANGUAGE

Syntax

const short  CHG_LANGUAGE = 8;

Description

the dictionary's language has changed.


ENTRIES_CLEARED

Syntax

const short  ENTRIES_CLEARED = 16;

Description

all entries have been removed.


ACTIVATE_DIC

Syntax

const short  ACTIVATE_DIC = 32;

Description

used when the dictionary was activated.


DEACTIVATE_DIC

Syntax

const short  DEACTIVATE_DIC = 64;

Description

used when the dictionary was deactivated.

Top of Page