csrcol( ) Function
Description:
| |
The csrcol() function returns the column number
where the cursor is located in the current window.
The column count starts at zero. |
|
Syntax:
Parameters:
| |
numeric: retval |
The column number where the cursor is located in the current window. |
Platforms:
| |
Windows, DOS, Internet Active Pages |
Example:
local retval
retval = csrcol() + 1 // To adjust for being zero based
println( "The cursor is positioned in column " + retval )
|
|