Framework.SetCursorSettings(Boolean,Boolean) Method (SetCursorSettings)
Sets options for cursor usage in full-screen mode.
Visual Basic Public Sub SetCursorSettings( _
ByVal showCursorWhenFullscreen As Boolean, _
ByVal clipCursorWhenFullscreen As Boolean _
)C# public void SetCursorSettings(
bool showCursorWhenFullscreen,
bool clipCursorWhenFullscreen
);C++ public:
void SetCursorSettings(
bool showCursorWhenFullscreen,
bool clipCursorWhenFullscreen
);JScript public function SetCursorSettings(
showCursorWhenFullscreen : boolean,
clipCursorWhenFullscreen : boolean
);
showCursorWhenFullscreen System.Boolean
Set to true if the cursor will be visible when the application is running in full-screen mode; otherwise, false.clipCursorWhenFullscreen System.Boolean
Set to true if the cursor will be restricted from exiting the screen boundaries when the application is running in full-screen mode; otherwise, false.
Show: