Difference between revisions of "cursor.set"
Jump to navigation
Jump to search
(→Syntax) |
|||
Line 15: | Line 15: | ||
|- | |- | ||
| <u><center>cursorName</center></u> || string || The name of the cursor shape to use for the mouse pointer. It can be one of the following strings : | | <u><center>cursorName</center></u> || string || The name of the cursor shape to use for the mouse pointer. It can be one of the following strings : | ||
− | " | + | "animate", "arrow", "clear", "crosshair", "default", "diag resize", "dilation", "dotted arrow", "drag grab", "excel plus", "hand closed", "hand open", "hand pointer", "hide", "hollow pointer", "interrogation", "link select", "mod label", "pencil", "pointer", "resize column", "resize row", "rotation", "show" "text", "translation", "unavailable", "wait busy", "writing", "zoom box", "zoom in", "zoom out" |
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | |||
− | "diag resize", | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | "resize row", | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
− | " | ||
|- | |- | ||
|} | |} |
Revision as of 11:25, 11 June 2011
cursor.set is a function that is part of the cursor functions.
It sets the shape of the mouse pointer to display.
This has been introduced in TI-Nspire OS 3.0 (Changes).
Syntax
cursor.set(cursorName)
Parameter | Type | Description |
---|---|---|
string | The name of the cursor shape to use for the mouse pointer. It can be one of the following strings :
"animate", "arrow", "clear", "crosshair", "default", "diag resize", "dilation", "dotted arrow", "drag grab", "excel plus", "hand closed", "hand open", "hand pointer", "hide", "hollow pointer", "interrogation", "link select", "mod label", "pencil", "pointer", "resize column", "resize row", "rotation", "show" "text", "translation", "unavailable", "wait busy", "writing", "zoom box", "zoom in", "zoom out" |
Example
if (needsCursor == true) then
cursor.set("pencil")
end
See also