public struct CellDimensions
Represents the dimensions of a Cell.
| Name | Type | Default Value | Description |
|---|---|---|---|
| height | readonly double | Does Not Apply |
The height of the cell. This is only relevant when the cell in question is associated with a three dimensional entity. |
| length | readonly double | Does Not Apply |
The length of the cell. |
| width | readonly double | Does Not Apply |
The width of the cell. |
public CellDimensions(double length, double width)
Initializes a new instance of the CellDimension structure with height set to 0.
| Name | Type | Description |
|---|---|---|
| length | double |
The length of the cell. |
| width | double |
The width of the cell. |
public CellDimensions(double height, double length, double width)
Initializes a new instance of the CellDimension structure.
| Name | Type | Description |
|---|---|---|
| height | double |
The height of the cell. This is only relevant when the cell in question is associated with a three dimensional entity. |
| length | double |
The length of the cell. |
| width | double |
The width of the cell. |