Used internally by TextEditor
to manage find and replace actions.
Constructor
Methods
find(search:Any, backwards:Bool = false, allowWrap:Bool = true, updateSelection:Bool = true):TextEditorSearchResult
Performs a find action.
findNext(backwards:Bool = false, allowWrap:Bool = true):TextEditorSearchResult
Performs a find next action. Must call find()
first.
replace(replaceText:String, all:Bool = false, backwards:Bool = false, allowWrap:Bool = true):TextEditorSearchResult
Performs a replace (one or all) action. Must call find()
first.