Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / ThemeCursor Object / CursorShape Property
Example
CursorShape Property (ThemeCursor)
Gets or sets the appearance of the cursor in the terminal window.
Syntax
expression.CursorShape As CursorShapeOption
where expression is a variable that represents a ThemeCursor Object

Property Value

A CursorShapeOption Enumeration value.
Remarks
This is stored as a string in the theme.
Example
This statement sets the cursor to appear as a rectangle that covers the bottom half of the character space.
Sub SetCursorShape()
    ThisIbmTerminal.Theme.Cursor.CursorShape = CursorShapeOption_LowHalfBlock
End Sub
See Also