|
Syntax
- void setOptions
(
- com::sun::star::util::SearchOptions options );
Description
set the options for the forward or backward search.
Syntax
- com::sun::star::util::SearchResult searchForward
(
- string searchStr,
- long startPos,
- long endPos );
Description
search forward in the searchStr, starts at startPos and ends by endpos.
The result is returned in the SearchResult.
Syntax
- com::sun::star::util::SearchResult searchBackward
(
- string searchStr,
- long startPos,
- long endPos );
Description
search backward in the searchStr, starts at startPos and ends by endpos.
The endpos must be lower then the startpos, because the function searches backward!
The result is returned in the SearchResult.
|