struct SearchOptions in module com::sun::star::util::

(Global Index)

Syntax

struct SearchOptions;

Field Summary

algorithmType search type, can be: ABSOLUTE, REGEXP, APPROXIMATE

searchFlag some flags - can be mixed

searchString the search text

replaceString the replace text (is for optional replacing - SearchOption is only the data container for it)

Locale this is the language for case insensitive search

changedChars this many characters can be different between the found and search word in a "Weight Levenshtein-Distance"

deletedChars this many characters can be missed in the found word in a "Weight Levenshtein-Distance"

insertedChars this many characters can be additional in the found word in a "Weight Levenshtein-Distance"

transliterateFlags asian flags for the transliteration. Same meaning as the enum of TransliteratorModule

Field Details



algorithmType

Syntax

com::sun::star::util::SearchAlgorithms algorithmType;

Description

search type, can be: ABSOLUTE, REGEXP, APPROXIMATE


searchFlag

Syntax

long searchFlag;

Description

some flags - can be mixed

See also

SearchFlags

searchString

Syntax

string searchString;

Description

the search text


replaceString

Syntax

string replaceString;

Description

the replace text (is for optional replacing - SearchOption is only the data container for it)


Locale

Syntax

com::sun::star::lang::Locale Locale;

Description

this is the language for case insensitive search


changedChars

Syntax

long changedChars;

Description

this many characters can be different between the found and search word in a "Weight Levenshtein-Distance"


deletedChars

Syntax

long deletedChars;

Description

this many characters can be missed in the found word in a "Weight Levenshtein-Distance"


insertedChars

Syntax

long insertedChars;

Description

this many characters can be additional in the found word in a "Weight Levenshtein-Distance"


transliterateFlags

Syntax

long transliterateFlags;

Description

asian flags for the transliteration. Same meaning as the enum of TransliteratorModule

See also

com/sun/star/i18n/XTransliteration.idl
Top of Page