PutString
PutString
The PutString method sends a string to the virtual screen at the specified location. The string will overlay only unprotected fields, and any parts of the string which fall over to protected fields will be discarded. Not applicable for VT emulation, which does not allow putting a string at an arbitrary screen location.
Syntax
FlexScreen.PutString(Text, Position)
Parameters
Text |
String, input |
|
Text string to place in the virtual screen location specified. |
||
Position |
Integer, input |
|
Integer value of the zero based screen position, which may be obtained by using the FlexScreen.Position method. |
Example
Sub Main()
Ok = FlexScreen.PutString("MyTextString", FlexScreen.Position(3, 32))
End Sub