Desktop Functions: Smart Device Functions:
|
Search Results for "GetIconInfo" in [All]user321: GetIconInfo
static extern bool GetIconInfo(IntPtr hIcon, out ICONINFO piconinfo);
Public Declare Function GetIconInfo Lib "user32" (ByVal hIcon As IntPtr, ByRef piconinfo As ICONINFO) As Boolean
<System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint:="GetIconInfo")> _
Public Shared Function GetIconInfo(ByVal hIcon As System.IntPtr, ByRef piconinfo As ICONINFO) As <System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)> Boolean
if (!GetIconInfo(hCursor, out ii)) {
static extern bool GetIconInfo(IntPtr hIcon, out ICONINFO piconinfo); |