InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.ALC Library / AlcScreen 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 (AlcScreen)
    In This Topic
    Puts the text at the specified screen location, taking up "length" number of byte positions.
    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 AlcScreen 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

    One of the ReturnCode enum values
    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", the text is truncated.
    See Also