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:
  retval = csrcol()

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 )

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved