InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.T27 Library / T27Screen Object / PutText1 Method
Text to put on screen.
Row position on which to put the text.
Column position on which to put the text.
Number of byte positions available for the text.
In This Topic
    PutText1 Method (T27Screen)
    In This Topic
    Puts text at the specified screen location.
    Syntax
    expression.PutText1( _
       ByVal text As String, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal length As Integer _
    ) As ReturnCode
    where expression is a variable that represents a T27Screen Object

    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.
    Exceptions
    ExceptionDescription
    This exception is thrown if the row or column parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
    Remarks
    If the text string is longer than "length", or an overwrite of protected data is attempted then the text is truncated.
    See Also