[]
Gets or sets the component at the specified index.
public float this[int index] { get; set; }
Public Default Property Item(index As Integer) As Single
Type | Name | Description |
---|---|---|
int | index | The zero-based index of the component to access. |
Type | Description |
---|---|
float | The value of the ColorMatrix5x4 component, depending on the index. |
Gets or sets the component at the specified index.
public float this[int rowIndex, int columnIndex] { get; set; }
Public Default Property Item(rowIndex As Integer, columnIndex As Integer) As Single
Type | Name | Description |
---|---|---|
int | rowIndex | The zero-based index of row of the ColorMatrix5x4 to access. |
int | columnIndex | The zero-based index of column of the ColorMatrix5x4 to access. |
Type | Description |
---|---|
float | The value of the ColorMatrix5x4 component, depending on the index. |