'Declaration
Overloads Function PutText( _ ByVal text As String, _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal length As Integer _ ) As ReturnCode
'Usage
Dim instance As IUtsScreen Dim text As String Dim row As Integer Dim column As Integer Dim length As Integer Dim value As ReturnCode value = instance.PutText(text, row, column, length)
Parameters
- text
- Text to put on screen.
- row
- Row position on which to put the text.
- column
- Column position on which to put the text.
- length
- Number of byte positions available for the text.
Return Value
ReturnCode indicates success, failure, or a warning condition if the cursor position reaches the screen boundary.