Table of Contents

Class TableRow

Namespace
FileFormat.Slides
Assembly
FileFormat.Slides.dll

Represents a row within a table.

public class TableRow
Inheritance
TableRow
Inherited Members

Constructors

TableRow()

Default constructor for the TableRow class. Initializes a new instance of the TableRow class with an empty list of cells.

public TableRow()

TableRow(Table)

Constructor for the TableRow class that initializes a new instance of the TableRow class with a reference to the table's stylings.

public TableRow(Table table)

Parameters

table Table

The table containing the row.

Properties

Cells

Gets or sets the list of cells in the row.

public List<TableCell> Cells { get; set; }

Property Value

List<TableCell>

ID

Gets or sets the unique identifier of the row.

public int ID { get; set; }

Property Value

int

RowHeight

Gets or sets the height of the row.

public int RowHeight { get; set; }

Property Value

int

RowStylings

Gets or sets the stylings applied to the row.

public Stylings RowStylings { get; set; }

Property Value

Stylings

Methods

AddCell(TableCell)

Adds a cell to the row.

public void AddCell(TableCell cell)

Parameters

cell TableCell

The TableCell object to be added to the row.