import { Table } from "https://deno.land/x/docxml@5.15.3/src/components/Table.ts";
A component that represents a table.
Constructors
new
Table(tableProps: TableProps, ...tableChildren: TableChild[])Properties
readonly
model: TableGridModelA conceptual description of how the cells, columns, rows and spans of this table make sense.
Exposed so it can be accessed by Row and Cell descendants, but not meant to be used otherwise.
Methods
toNode(ancestry: ComponentAncestor[]): Promise<Node>
Creates an XML DOM node for this component instance.
Static Methods
fromNode(node: Node, context: ComponentContext): Table
Instantiate this component from the XML in an existing DOCX file.
matchesNode(node: Node): boolean
Asserts whether or not a given XML node correlates with this component.