ITextSearchOptions
public interface ITextSearchOptions
Represents options that can be used to search for text in a Presentation, Slide or TextFrame.
Methods
| Method | Description |
|---|---|
| getCaseSensitive() | Set true to use case-sensitive search, false - otherwise. |
| setCaseSensitive(boolean value) | Set true to use case-sensitive search, false - otherwise. |
| getWholeWordsOnly() | Set true to match only whole words, false - otherwise. |
| setWholeWordsOnly(boolean value) | Set true to match only whole words, false - otherwise. |
| getIncludeNotes() | Set true to include text contained in slide notes when performing text search, replacement, or highlighting operations. |
| setIncludeNotes(boolean value) | Set true to include text contained in slide notes when performing text search, replacement, or highlighting operations. |
getCaseSensitive()
public abstract boolean getCaseSensitive()
Set true to use case-sensitive search, false - otherwise. Read/write boolean.
Returns: boolean
setCaseSensitive(boolean value)
public abstract void setCaseSensitive(boolean value)
Set true to use case-sensitive search, false - otherwise. Read/write boolean.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean |
getWholeWordsOnly()
public abstract boolean getWholeWordsOnly()
Set true to match only whole words, false - otherwise. Read/write boolean.
Returns: boolean
setWholeWordsOnly(boolean value)
public abstract void setWholeWordsOnly(boolean value)
Set true to match only whole words, false - otherwise. Read/write boolean.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean |
getIncludeNotes()
public abstract boolean getIncludeNotes()
Set true to include text contained in slide notes when performing text search, replacement, or highlighting operations. The default value is false.
Returns: boolean
setIncludeNotes(boolean value)
public abstract void setIncludeNotes(boolean value)
Set true to include text contained in slide notes when performing text search, replacement, or highlighting operations. The default value is false.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean |