Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

TypeScript (component) library for building and parsing a DOCX file
Go to Latest
type alias TableProperties
import { type TableProperties } from "https://deno.land/x/docxml@5.3.6/src/properties/table-properties.ts";
definition: { style?: string | null; width?:
| null
| number
| "`${number}%"
| string
| { length: "`${number}%" | string | number; unit:
| null
| "nil"
| "auto"
| "dxa"
| "pct"
; }
; strictColumnWidths?: boolean | null; indentation?: null | Length; cellSpacing?: null | Length; rowBandingSize?: null | number; columnBandingSize?: null | number; activeConditions?: null | { firstColumn?: null | boolean; lastColumn?: null | boolean; firstRow?: null | boolean; lastRow?: null | boolean; noHBand?: null | boolean; noVBand?: null | boolean; }; cellPadding?: null | { top?: null | Length; bottom?: null | Length; start?: null | Length; end?: null | Length; }; borders?: null | { top?: null | Border<LineBorderType | ArtBorderType>; start?: null | Border<LineBorderType | ArtBorderType>; bottom?: null | Border<LineBorderType | ArtBorderType>; end?: null | Border<LineBorderType | ArtBorderType>; insideH?: null | Border<LineBorderType | ArtBorderType>; insideV?: null | Border<LineBorderType | ArtBorderType>; }; }