API Reference
Class
TableCell
Represents a table cell value that can be text, raw HTML, or a typed HtmlForgeX element.
Inheritance
- Object
- TableCell
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:
TableCellCreates 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