Get_Screen_Text

Get the text at the specified location. The top row is row 1; the left-most column is column 1.

Parameters

Row

The row of text to return.

Column

The column of text to return.

Format

Get_Screen_Text (Row, Column)

Return Value

Returns the text starting at the specified screen position up to the right side of the display.

Example

Script(Get_Screen_Text_Test)
String(strScreenText)
Number(nRow)
Number(nColumn)
Activate(From_Menu)
nRow = Ask_Number("Enter row, top row is 1", "Get_Screen_Text_Test", 1, 99, 1)
nColumn = Ask_Number("Enter column, left-most column is 1", "Get_Screen_Text_Test", 1, 99, 1)
strScreenText = Get_Screen_Text(nRow, nColumn)
Ask_OK(strScreenText, "Screen Text")
Return

See Also

Get_Screen_Text_Columns, Get_Position_Row, Get_Screen_Text_Length, Get_Field_Index, Get_Field_Row, String_Equal, Ask_String, Get_Screen_Rows, Search_Screen, Speech_To_Text

 


Was this article useful?    

The topic was:

Inaccurate

Incomplete

Not what I expected

Other

Privacy and Legal