pteSetSearchText
pteSetSearchText(t_searchPattern t_panelName[w_windowId] ) => t / nil
Description
Searches for the specified search string based on the casing, match type, and search operator set for the panel in which the search is to be performed.
Arguments
|
Name of the Palette panel. |
|
|
ID of the window containing the Palette that you want to update. |
Value Returned
|
The items matching the specified search string were listed in the specified panel. |
|
Examples
Displays only those layer-purpose pairs that start with the letter M.
pteSetSearchMatchCase("sensitive" "Layers")
pteSetSearchMatchType("prefix" "Layers")
pteSetSearchOperator("or" "Layers")
pteSetSearchText("M" "Layers")
Return to top