Skip to content

Table.TableCells.Layout Class

Defines the layout for a row or a column defined in Cells

C#
public class Table.TableCells.Layout

Inheritance object

The size of the row or column

C#
public int Size { get; set; }

The foreground color used by the row or column

C#
public Color? Foreground { get; set; }

The background color used by the row or column

C#
public Color? Background { get; set; }

The setting options used by the row or column

C#
public Table.Cell.Options Settings { get; set; }

Removes this entire layout from the table.

C#
public void Remove()

Set a default layout to be used for each new cell

C#
public void SetLayout(int? size = null, Color? foreground = null, Color? background = null, Table.Cell.Options? settings = null)

size int?

foreground System.NullableSadRogue.Primitives.Color

background System.NullableSadRogue.Primitives.Color

settings Table.Cell.Options