Skip to content

GroupIconResource Class

A subclass of Resource which provides specific methods for manipulating the resource data.

MethodDescription
ReadFromFile(path)Reads the icon group from a .ico file.
PropertyDescription
DataGets or sets the raw data of the resource. The data is in the format of the RT_GROUPICON resource structure.
IconsEnumerates the the icons in the icon group.

The resource is of type «see P:WixToolset.Dtf.Resources.ResourceType.GroupIcon» (RT_GROUPICON). WixToolset.Dtf.Resources.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8

Reads the icon group from a .ico file.

public void ReadFromFile(
string path
)
ParameterTypeDescription
pathstringPath to an icon file (.ico).

Gets or sets the raw data of the resource. The data is in the format of the RT_GROUPICON resource structure.

public System.Byte[] Data { get; set; }

Enumerates the the icons in the icon group.

public IEnumerable<WixToolset.Dtf.Resources.Resource> Icons { get; set; }