We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#Text.WhatRow
##Syntax Text.WhatRow : int
##Description The Text.WhatRow function is used to determine the cursor position's row.
##Example This program outputs The current row is 5, the current column is 15.
Text.Locate ( 5, 10 ) put "12345".. put "The current row is", Text.WhatRow put "The current column is", Text.WhatCol
##Details The screen should be in a "screen" or "graphics" mode. Text.WhatRow functions properly even if the cursor is invisible.
##Status Exported qualified.
This means that you can only call the function by calling Text.WhatRow, not by calling WhatRow.
##See also the text_whatcol.html function, which is used to determine the cursor column. See also the text_locate.html, textmodule.html.maxrow.html and text_maxcol.html procedure.html.