imagelist_dragshownolock (comctl32)
Last changed: -212.101.23.97

.
Summary
Shows or hides the image being dragged.

C# Signature:

/// <summary>
/// Shows or hides the image being dragged.
/// </summary>
/// <param name="fShow">Value specifying whether to show or hide the image being dragged.
/// Specify <see langword="true"/> to show the image or <see langword="false"/> to hide the image.</param>
/// <returns>Returns nonzero if successful, or zero otherwise. </returns>
[DllImport("comctl32.dll", CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool ImageList_DragShowNolock([MarshalAs(UnmanagedType.Bool)] bool fShow);

VB Signature:

''' <summary>
''' Shows or hides the image being dragged.
''' </summary>
''' <param name="fShow">Value specifying whether to show or hide the image being dragged.
''' Specify <see langword="true"/> to show the image or <see langword="false"/> to hide the image.</param>
''' <returns>Returns nonzero if successful, or zero otherwise. </returns>
<DllImport("comctl32.dll", CharSet := CharSet.Auto)> _
Friend Shared Function ImageList_DragShowNolock(<MarshalAs(UnmanagedType.Bool)> fShow As Boolean) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation