InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Theme Class / Cursor Property
Example


In This Topic
    Cursor Property (Theme)
    In This Topic
    Gets the cursor object associated with the theme.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Cursor As IThemeCursor
    'Usage
     
    
    Dim instance As Theme
    Dim value As IThemeCursor
     
    value = instance.Cursor
    public IThemeCursor Cursor {get;}
    Example
    private Theme theme;
    private IThemeCursor cursor;
    //Gets the theme cursor.
    cursor = theme.Cursor;
    See Also