DestroyCaret (user32)
Last changed: Diego-85.53.146.43

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern bool DestroyCaret();

VB Signature:

' Old style line:
Declare Function DestroyCaret Lib "user32.dll" () As Boolean

' New style block:
<DllImport("user32.dll")> _
Function DestroyCaret() As Boolean
End Function

User-Defined Types:

None.

Notes:

None.

Related:

CreateCaret

ShowCaret

HideCaret

Tips & Tricks:

Please add some!

Sample Code (C#):

[DllImport("user32.dll")]
static extern bool DestroyCaret();
// Call the method
DestroyCaret();

Sample Code (VB):

Declare Function DestroyCaret Lib "user32.dll" () As Boolean
' Call the method
DestroyCaret()

Alternative Managed API:

Do you know one? Please contribute it!

Documentation