hiGetCursorName
hiGetCursorName(x_cursorID) =>t_cursorName
Description
Returns the name of the cursor associated with the specified cursor ID.
Arguments
|
An integer specifying the ID associated with the given cursor name. |
Value Returned
|
For example, |
Examples
Returns the name of the cursor ibeam associated with hiclbeam.
hiGetCursorName( hicIbeam )
=> "ibeam"
Returns the name of the cursor arrow associated with hicArrow.
hiGetCursorName( hicArrow )
=> "arrow"
Returns the name of the cursor unknown associated with -1.
hiGetCursorName( -1 )
=> "unknown"
Related Topics
Return to top