Application.SearchKeywords

table Application.SearchKeywords ( 

string  SearchFor,

boolean AllowPartialMatch = true,

boolean CaseSensitive = true )

Description

Searches all keywords in all pages in the project and returns a table of search results.

Parameters

SearchFor

(string) The text you want to search the keywords for.

AllowPartialMatch

(boolean) Whether to find keywords that contain the search text as a substring, or to only return keywords that match the search text exactly.

VALUE

DESCRIPTION

true

Allow a partial match. (Default)

false

Don't allow a partial match.

CaseSensitive

(boolean) Whether the search is case-sensitive.

VALUE

DESCRIPTION

true

The search is case-sensitive. (Default)

false

The search is not case-sensitive.

Returns

(table)  A table indexed by page name. The value of each entry is a (one-based) numerically indexed table of matching keywords found on that page. If no entries were found, nil is returned.

ResultVariable

When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.

See also:  Related Actions