Position
Position
Converts the specified row and column values to a position value used in many other Flex Terminal Emulator methods, where the position is zero based. For example, the first position on the host screen (row 1, column 1) is zero.
Syntax
FlexScreen.Position(Row, Column)
Parameters
Row |
Integer, input |
|
Host screen row number. |
||
Column |
Integer, input |
|
Host screen column number. |
Example
Sub Main()
MsgBox "The position at row 6, column 7 is:" & vbCrLf & vbCrLf & FlexScreen.Position(6, 7)
End Sub