Click or drag to resize

IconUtilitiesSaveAsDll Method (String, String, Int32, Int32, Boolean)

Writes a .ICO file (possibly containing multiple sizes) into a Win32 resource-only .DLL file. The output icon format is always PNG / ARGB (32-bit).

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static void SaveAsDll(
	string icoFilePath,
	string filePath,
	int resourceId,
	int language,
	bool deleteExisting
)

Parameters

icoFilePath
Type: SystemString
The input .ICO file path.
filePath
Type: SystemString
The target .DLL file path.
resourceId
Type: SystemInt32
The Win32 resource identifier.
language
Type: SystemInt32
The language. Use 1033 for en-US.
deleteExisting
Type: SystemBoolean
If set to true the target.DLL path will always be overwritten; otherwise, existing icons will be preserved.
See Also