Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - <b>hidecaret()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
HideCaret()
Make sure the caret is not displayed
------------------------------------------------------------------------------

Syntax
HideCaret( <hWnd> )   -->   nil

Arguments
<hWnd> is the handle to the window that owns the caret.

Returns
NIL.

Description
This function hides the caret only if the specified window
actually owns it.  Note that HideCaret() maintains a count of
the number of times it has been called without a subsequent
ShowCaret(), and the caret remains hidden until this count is
zero (i.e. until the same number of ShowCaret() calls).

Example
HideCaret( hWnd )             // now hidden
HideCaret( hWnd )             // still hidden
ShowCaret( hWnd )             // still hidden (count still 1)
ShowCaret( hWnd )             // visible again


See Also: GetCaretBlinkTime() GetCaretX() GetCaretY() SetCaretBlinkTime() SetCaretPos() ShowCaret()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson