InfoConnect for Airlines
Cursor Property (Theme)
Example 


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