Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / ThemeCursor Object / CursorBlinkRate Property
Example
In This Topic
    CursorBlinkRate Property
    In This Topic
    Gets or sets the speed at which the cursor blinks in the terminal window.
    Syntax
    expression.CursorBlinkRate As CursorBlinkRateOption
    where expression is a variable that represents a ThemeCursor Object

    Property Value

    A CursorBlinkRateOption Enumeration value.
    Remarks
    This is stored as a string in the theme.
    Example
    This statement sets the cursor blink rate to fast.
    Sub BlinkFast()
        ThisIbmTerminal.Theme.Cursor.CursorBlinkRate = CursorBlinkRateOption_Fast
    End Sub
    See Also