Table of Contents

Class TableCell

Namespace
FileFormat.Slides
Assembly
FileFormat.Slides.dll

Represents a cell within a table row.

public class TableCell
Inheritance
TableCell
Inherited Members

Constructors

TableCell()

Default constructor for the TableCell class.

public TableCell()

TableCell(TableRow)

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

public TableCell(TableRow row)

Parameters

row TableRow

The table row containing the cell.

Properties

CellStylings

Gets or sets the stylings applied to the cell.

public Stylings CellStylings { get; set; }

Property Value

Stylings

FontFamily

Gets or sets the font family of the text in the cell.

public string FontFamily { get; set; }

Property Value

string

FontSize

Gets or sets the font size of the text in the cell.

public int FontSize { get; set; }

Property Value

int

ID

Gets or sets the unique identifier of the cell.

public string ID { get; set; }

Property Value

string

Text

Gets or sets the text content of the cell.

public string Text { get; set; }

Property Value

string