Sets mouse cursor to the passed cursor handle.
[Visual Basic .NET] |
---|
Public Sub SetMouseCursorFromHandle( _ ByVal CursorHandle As Integer _ ) As |
[C#] |
---|
public void SetMouseCursorFromHandle( int CursorHandle ); |
[Managed C++] |
---|
public: void SetMouseCursorFromHandle( int CursorHandle ); |
[Java] |
---|
public void setMouseCursorFromHandle( Integer CursorHandle ); |
[Unmanaged C++] |
---|
public: HRESULT SetMouseCursorFromHandle( int CursorHandle ); |
- CursorHandle
- A windows handle to a loaded cursor file.
The cursor is repalced to the newly selected cursor when the mouse pointer is moved over the control.
[Visual Basic .NET] | ||
---|---|---|
|