Class LayoutTable
Defines the results of a layout calculation.
Inheritance
System.Object
LayoutTable
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class LayoutTable : object
Constructors
LayoutTable(Int32, Int32, Int32, Int32)
Initializes a new instance of the LayoutTable class.
Declaration
public LayoutTable(int columnCount, int rowCount, int cellWidth, int cellHeight)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | columnCount | The column count. |
System.Int32 | rowCount | The row count. |
System.Int32 | cellWidth | The width of each cell. |
System.Int32 | cellHeight | The height of each cell. |
Properties
CellHeight
Gets or sets the height of each cell.
Declaration
public int CellHeight { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
CellWidth
Gets or sets the width of each cell.
Declaration
public int CellWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ColumnCount
Gets or sets the column count.
Declaration
public int ColumnCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RowCount
Gets or sets the row count.
Declaration
public int RowCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |