Skip to main content
Module

x/docxml/mod.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@4.0.8/mod.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 | TableBorder; left?: null | TableBorder; bottom?: null | TableBorder; right?: null | TableBorder; insideH?: null | TableBorder; insideV?: null | TableBorder; }; }