public struct GridValues<T>
Represents a generic collection of values for a row, column, and layer. This class is used internally in several areas, but you will probably never need to use it yourself, unless you are writing some custom code and want the convenience it offers.
Name | Type | Default Value | Description |
---|---|---|---|
columnValue | readonly T | Does Not Apply |
The column value. |
layerValue | readonly T | Does Not Apply |
The layer value. |
rowValue | readonly T | Does Not Apply |
The row value. |
public GridValues(T rowValue, T columnValue, T layerValue)
Initializes a new instance of the GridValues structure.
Name | Type | Description |
---|---|---|
rowValue | T |
The row value that the structure should hold. |
columnValue | T |
The column value that the structure should hold. |
layerValue | T |
The layer value that the structure should hold. |