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

x/docxml/src/properties/section-properties.ts>SectionProperties

TypeScript (component) library for building and parsing a DOCX file
Go to Latest
type alias SectionProperties
import { type SectionProperties } from "https://deno.land/x/docxml@5.11.4/src/properties/section-properties.ts";

All the formatting options that can be given on a text run (inline text).

Serializes to the <w:rPr> element. https://c-rex.net/projects/samples/ooxml/e1/Part4/OOXML_P4_DOCX_rPr_topic_ID0EIEKM.html

definition: { headers?: null | string | { first?: string | null; even?: string | null; odd?: string | null; }; footers?: null | string | { first?: string | null; even?: string | null; odd?: string | null; }; pageWidth?: null | Length; pageHeight?: null | Length; pageOrientation?: null | "landscape" | "portrait"; pageMargin?: { top?: null | Length; right?: null | Length; bottom?: null | Length; left?: null | Length; header?: null | Length; footer?: null | Length; gutter?: null | Length; }; isTitlePage?: null | boolean; }