ilgGetHighlight
ilgGetHighlight( [?locl_location] [?tabw_tab] ) =>l_highlightIDs/nil
Description
Returns the list of highlight IDs for the text highlighted in the SKILL IDE editor window.
Arguments
|
Location (x_column x_row) of the area highlighted in the SKILL IDE editor window. |
|
|
The window ID of the SKILL IDE editor window. Default is the current tab window. |
Value Returned
|
A list representing the highlight IDs of the highlighted text. |
|
Examples
ilgSetHighlight('(4 11) '(18 12) "orange")
=> (nil l1 (4 11) l2 (18 12)
color "orange" fullWidth nil)
;highlights the area between (4 11) and (18 12)
ilgGetHighlight(?loc '(4 11))
=> ((nil l1
(4 11) l2
(18 12)
color "#ffa500" fullWidth nil
)
(nil l1
(4 11) l2
(2 13)
color "#ffa500" fullWidth nil
)
)
Related Topics
Return to top