API Reference
Class
TableCell
Represents a table cell value that can be text, raw HTML, or a typed HtmlForgeX element.
Inheritance
- Object
- TableCell
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method TableCell.FromElement
- Method TableCell.Raw
- Method TableCell.TextCell
Accepted by parameters
- Method Table.AddRow
- Method Table.AddRow
Methods
public static TableCell FromElement(Element element) #Returns:
TableCellCreates a cell that renders a typed HtmlForgeX element.
Parameters
- element HtmlForgeX.Element
public static TableCell Raw(String html) #Returns:
TableCellEditorBrowsable(2)Creates a raw HTML cell (renders the provided HTML without encoding).
Parameters
- html System.String
public static TableCell TextCell(String text) #Returns:
TableCellCreates a text cell (renders the provided text as-is).
Parameters
- text System.String