InfoConnect API Guide
Attachmate.Reflection.Emulation.T27 Namespace / IT27Screen Interface / PutCharacter Method
Screen character to put at the screen.
Row position on the screen.
Column position on the screen.


In This Topic
    PutCharacter Method (IT27Screen)
    In This Topic
    Puts a ScreenCharacter at the specified screen location.
    Syntax
    'Declaration
     
    
    Function PutCharacter( _
       ByVal character As ScreenCharacter, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As ReturnCode
    'Usage
     
    
    Dim instance As IT27Screen
    Dim character As ScreenCharacter
    Dim row As Integer
    Dim column As Integer
    Dim value As ReturnCode
     
    value = instance.PutCharacter(character, row, column)

    Parameters

    character
    Screen character to put at the screen.
    row
    Row position on the screen.
    column
    Column position on the screen.

    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 ScreenCharacter is a DBCS character, the character takes a two-byte space starting at the specified screen location.
    See Also