|
|
|
|
|
WLanguage procedure called by CodeEditorSearch WLanguage procedure ("callback") called by CodeEditorSearch for each element found. This procedure is used to manipulate the element found. CODEEDT_Example = [
HRead("file", 1)
HReadFirst("file", "item")
]
CodeEditorSearch(CODEEDT_Example, "HRead[a-zA-Z]*", byRegularExpression, CodeEditorSearch_Callback)
INTERNAL PROCEDURE CodeEditorSearch_Callback(Position int, Length int)
Trace(Position + " -> " + Length)
END
Syntax
CodeEditorSearch_Callback(<Position> , <Length>)
<Position>: Integer Position of the first character of the element found. <Length>: Integer Length of the element found.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|