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
TableRowThe table row containing the cell.
Properties
CellStylings
Gets or sets the stylings applied to the cell.
public Stylings CellStylings { get; set; }
Property Value
FontFamily
Gets or sets the font family of the text in the cell.
public string FontFamily { get; set; }
Property Value
FontSize
Gets or sets the font size of the text in the cell.
public int FontSize { get; set; }
Property Value
ID
Gets or sets the unique identifier of the cell.
public string ID { get; set; }
Property Value
Text
Gets or sets the text content of the cell.
public string Text { get; set; }