Desktop Functions: Smart Device Functions:
|
ExtractIcon (shell32)
C# Signature:
[DllImport("shell32.dll")] VB.NET Signature:
<DllImport("shell32.dll")> _ User-Defined Types:None. Notes:Even though the Win32 function signature declares the third parameter as UINT nIconIndex, in .NET it must be a signed integer. This is because UINT is actually an alias for the int data type. Also, ExtractIcon() accepts -1 (an invalid value for unsigned integers) as an icon index, which will return the total number of icons in the specified file. Tips & Tricks:Please add some! C# Sample Code:
string fileName = "C:\\Test.txt"; VB.NET Sample Code:
Dim fileName As String = "C:\Test.txt" Alternative Managed API:System.Drawing.Icon.ExtractAssociatedIcon(fileName); Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|