Sets system cursor.

Namespace:  Greatis.Nostalgia
Assembly:  Greatis.Nostalgia (in Greatis.Nostalgia.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function SetCursor ( _
	cursorToReplace As SystemCursors, _
	newCursor As Cursor _
) As Boolean
C#
public static bool SetCursor(
	SystemCursors cursorToReplace,
	Cursor newCursor
)
Visual C++
public:
static bool SetCursor(
	SystemCursors cursorToReplace, 
	Cursor^ newCursor
)
JavaScript
Greatis.Nostalgia.SystemCursor.setCursor = function(cursorToReplace, newCursor);

Parameters

cursorToReplace
Type: Greatis.Nostalgia..::.SystemCursors
System cursor type.
newCursor
Type: System.Windows.Forms..::.Cursor
New cursor.

Return Value

True when success, otherwise false.

See Also