:: com :: sun :: star :: util ::

struct SearchOptions

Elements' 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  
Elements' Details
algorithmType
SearchAlgorithms algorithmType;
Description
search type, can be: ABSOLUTE, REGEXP, APPROXIMATE
searchFlag
long searchFlag;
Description
some flags - can be mixed
searchString
string searchString;
Description
the search text
replaceString
string replaceString;
Description
the replace text (is for optional replacing - SearchOption is only the data container for it)
Locale
::com::sun::star::lang::Locale Locale;
Description
this is the language for case insensitive search
changedChars
long changedChars;
Description
this many characters can be different between the found and search word in a "Weight Levenshtein-Distance"
deletedChars
long deletedChars;
Description
this many characters can be missed in the found word in a "Weight Levenshtein-Distance"
insertedChars
long insertedChars;
Description
this many characters can be additional in the found word in a "Weight Levenshtein-Distance"
transliterateFlags
long transliterateFlags;
Description
asian flags for the transliteration. Same meaning as the enum of TransliteratorModule
Top of Page