CellDimensions Structure

public struct CellDimensions

Represents the dimensions of a Cell.

Fields

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.

Constructors

CellDimensions(double, double)

public CellDimensions(double length, double width)

Initializes a new instance of the CellDimension structure with height set to 0.

Parameters

Name Type Description
length double

The length of the cell.

width double

The width of the cell.


CellDimensions(double, double, double)

public CellDimensions(double height, double length, double width)

Initializes a new instance of the CellDimension structure.

Parameters

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.