Struct Icon
An RGBA formatted bitmap image with data, width, and a height.
public struct Icon
- Inherited Members
Constructors
Icon(uint, uint, byte[])
Create a new Icon.
public Icon(uint width, uint height, byte[] data)
Parameters
width
uintThe width of this Icon.
height
uintThe height of this Icon.
data
byte[]The data of this Icon.
Fields
Data
The data of this Icon.
public readonly byte[] Data
Field Value
- byte[]
- An RGBA formatted bitmap image with data, width, and a height.
Height
The height of this Icon.
public readonly uint Height
Field Value
- uint
- An RGBA formatted bitmap image with data, width, and a height.
Width
The width of this Icon.
public readonly uint Width
Field Value
- uint
- An RGBA formatted bitmap image with data, width, and a height.