|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function SetTrackerCursors (
nCursorMode as enumTrackerCursorModes,
hCursorResize as IntPtr,
hCursorPan as IntPtr
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes SetTrackerCursors (
enumTrackerCursorModes nCursorMode,
IntPtr hCursorResize,
IntPtr hCursorPan
);
|
|
[C++]
public: enumErrorCodes SetTrackerCursors (
enumTrackerCursorModes nCursorMode,
IntPtr hCursorResize,
IntPtr hCursorPan
);
|
|
Parameter
|
Description
| ||||||||||||
|
|
| ||||||||||||
|
nCursorMode
|
The cursor mode.
Supported values are the following:
| ||||||||||||
|
hCursorResize
|
If the cursor mode is set to TRACKER_CURSOR_MODE_CUSTOM, represents the handle to the cursor used for tracker's resizing operations, otherwise is ignored
| ||||||||||||
|
hCursorPan
|
If the cursor mode is set to TRACKER_CURSOR_MODE_CUSTOM, represents the handle to the cursor used for tracker's panning operations, otherwise is ignored
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful
|