ilgSetHighlight
ilgSetHighlight(l_location_begin l_location_end t_color[?fullWidthg_fullWidth] [w_tab] ) =>l_highlightID/nil
Description
Highlights the area within l_location_begin and l_location_end in the color specified by t_color.
Arguments
Value Returned
|
A list representing the highlight operation; this value can be passed to |
|
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)
ilgSetHighlight('(5 22) '(15 24) "forest green" ?fullWidth t)
=> (nil l1 (5 22) l2 (15 24)
color “forest green” fullWidth t
)
;highlights the entire line starting at (5 22)
Related Topics
Return to top