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 Layout
Declaration
public LayoutTable(int columnCount, int rowCount, int cellWidth, int cellHeight)
Parameters
Type | Name | Description |
---|---|---|
System. |
columnCount | The column count. |
System. |
rowCount | The row count. |
System. |
cellWidth | The width of each cell. |
System. |
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. |
CellWidth
Gets or sets the width of each cell.
Declaration
public int CellWidth { get; set; }
Property Value
Type | Description |
---|---|
System. |
ColumnCount
Gets or sets the column count.
Declaration
public int ColumnCount { get; set; }
Property Value
Type | Description |
---|---|
System. |
RowCount
Gets or sets the row count.
Declaration
public int RowCount { get; set; }
Property Value
Type | Description |
---|---|
System. |