Method | Description | |
---|---|---|
Arrow ( ) : void |
Arrow Cursor (default).
|
|
ArrowCD ( ) : void |
Arrow with CD Cursor.
|
|
CreateCursor ( Primitive imageName, Primitive xHotSpot, Primitive yHotSpot ) : Primitive |
Create a cursor that can be set using SetUserCursor or SetShapeCursor. An ImageList image can be resized with LDImage.Resize.
|
|
Cross ( ) : void |
Cross Cursor.
|
|
Hand ( ) : void |
Hand Cursor.
|
|
Help ( ) : void |
Help Cursor.
|
|
IBeam ( ) : void |
IBeam Cursor.
|
|
Invalid ( ) : void |
Invalid Cursor.
|
|
None ( ) : void |
No Cursor.
|
|
Pen ( ) : void |
Pen Cursor.
|
|
Scroll ( ) : void |
Scroll Cursor.
|
|
SetShapeCursor ( Primitive shapeName, Primitive cursor ) : void |
Set the cursor for a shape or control when the mouse is over the shape.
|
|
SetUserCursor ( Primitive cursor ) : void |
Sets a custom cursor as a pointer in the Graphics Window.
|
|
SizeAll ( ) : void |
Size All Cursor (Resizing).
|
|
SizeNESW ( ) : void |
NESW DoubleArrow Cursor (Resizing).
|
|
SizeNS ( ) : void |
NS DoubleArrow (Resizing).
|
|
SizeNWSE ( ) : void |
NWSE DoubleArrow Cursor (Resizing).
|
|
SizeWE ( ) : void |
WE DoubleArrow (Resizing).
|
|
Starting ( ) : void |
Starting Cursor.
|
|
UpArrow ( ) : void |
Up Arrow Cursor (Insertion).
|
|
Wait ( ) : void |
Wait Cursor.
|
Method | Description | |
---|---|---|
createCursor ( |
||
getCursor ( string cursor ) : System.Windows.Input.Cursor | ||
setCursor ( System.Windows.Input.Cursor cursor ) : void | ||
setCursor ( string shapeName, System.Windows.Input.Cursor cursor ) : void |
public static CreateCursor ( Primitive imageName, Primitive xHotSpot, Primitive yHotSpot ) : Primitive | ||
imageName | Primitive | The file path or ImageList image. |
xHotSpot | Primitive | The x pixel to use as the hot spot. |
yHotSpot | Primitive | The y pixel to use as the hot spot. |
return | Primitive |
public static SetShapeCursor ( Primitive shapeName, Primitive cursor ) : void | ||
shapeName | Primitive | The shape or control name. |
cursor | Primitive | A cursor created with CreateCursor or /// a standard cursor in this object (e.g. "ArrowCD") or /// the full path to a *.cur or *.ani file to use as a cursor. |
return | void |
public static SetUserCursor ( Primitive cursor ) : void | ||
cursor | Primitive | A cursor created with CreateCursor or /// a standard cursor in this object (e.g. "ArrowCD") or /// the full path to a *.cur or *.ani file to use as a cursor. |
return | void |