ilgRegisterSelectionCB
ilgRegisterSelectionCB(g_name) =>t
Description
Registers a SKILL callback for SKILL IDE, which is called when some text is selected in the SKILL IDE editor window.
Arguments
Value Returned
Examples
To register a selection callback:
defun(mySelCallback (l_begin l_end wTab)
printf(“Selected text %L - %L in tab window %L\n“
l_begin l_end wTab))
ilgRegisterSelectionCB('mySelCallback)
=> t
Related Topics
Return to top