GroupIconResource Class
A subclass of Resource which provides specific methods for manipulating the resource data.
Methods
Section titled “Methods”| Method | Description |
|---|---|
| ReadFromFile(path) | Reads the icon group from a .ico file. |
Properties
Section titled “Properties”| Property | Description |
|---|---|
| Data | Gets or sets the raw data of the resource. The data is in the format of the RT_GROUPICON resource structure. |
| Icons | Enumerates the the icons in the icon group. |
Remarks
Section titled “Remarks”The resource is of type «see P:WixToolset.Dtf.Resources.ResourceType.GroupIcon» (RT_GROUPICON).
WixToolset.Dtf.Resources.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8
ReadFromFile(path) Method
Section titled “ReadFromFile(path) Method”Reads the icon group from a .ico file.
Declaration
Section titled “Declaration”public void ReadFromFile( string path)Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| path | string | Path to an icon file (.ico). |
Data Property
Section titled “Data Property”Gets or sets the raw data of the resource. The data is in the format of the RT_GROUPICON resource structure.
Declaration
Section titled “Declaration”public System.Byte[] Data { get; set; }Icons Property
Section titled “Icons Property”Enumerates the the icons in the icon group.
Declaration
Section titled “Declaration”public IEnumerable<WixToolset.Dtf.Resources.Resource> Icons { get; set; }