Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / IbmTerminal Object / MouseShape Property
Example
In This Topic
    MouseShape Property (IbmTerminal)
    In This Topic
    Gets or sets the appearance of the mouse pointer in the terminal window.
    Syntax
    expression.MouseShape As MouseShapeOption
    where expression is a variable that represents a IbmTerminal Object

    Property Value

    A MouseShapeOption enumeration value. The default value is DefaultArrow.
    Exceptions
    ExceptionDescription
    This exception is thrown when you modify a property that was secured via the Permissions Manager, or that can only be modified by an Administrator.
    Example
    The following statement sets the mouse pointer to a rectangle.
    Sub SetMouseShape()
        ThisIbmTerminal.MouseShape = MouseShapeOption_Rectangular
    End Sub
    See Also