ilgPositionInComment
ilgPositionInComment(x_columnx_row[?tabw_tab] ) =>t/nil
Description
Checks if the specified coordinates (x_column x_row) fall within a comments block in the SKILL IDE document.
Arguments
|
The window ID of the SKILL IDE editor window. Default is the current tab window. |
Value Returned
Examples
If the SKILL IDE editor window has the following text:
defun(test (x y "xx")
/* function test */
x + y
) ; return sum x and y
ilgPositionInComment(1 1)
=> nil
ilgPositionInComment(10 2)
=> t
ilgPositionInComment(8 4)
=> t
Related Topics
Return to top