Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/docxml/src/properties/table-properties.ts>TableProperties

An experimental Deno tool to transform XML to DOCX with a little XPath- and component based configuration
Go to Latest
type alias TableProperties
import { type TableProperties } from "https://deno.land/x/docxml@5.0.1/src/properties/table-properties.ts";
definition: { style?: string | null; width?:
| null
| number
| "`${number}%"
| string
| { length: "`${number}%" | string | number; unit:
| null
| "nil"
| "auto"
| "dxa"
| "pct"
; }
; look?: null | { firstColumn?: null | boolean; lastColumn?: null | boolean; firstRow?: null | boolean; lastRow?: null | boolean; noHBand?: null | boolean; noVBand?: null | boolean; }; borders?: null | { top?: null | Border<TableBorderType>; left?: null | Border<TableBorderType>; bottom?: null | Border<TableBorderType>; right?: null | Border<TableBorderType>; insideH?: null | Border<TableBorderType>; insideV?: null | Border<TableBorderType>; }; }