docx
    Preparing search index...

    Type Alias ISectionPropertiesOptionsBase

    type ISectionPropertiesOptionsBase = {
        column?: IColumnsAttributes;
        footerWrapperGroup?: IHeaderFooterGroup<FooterWrapper>;
        grid?: Partial<IDocGridAttributesProperties>;
        headerWrapperGroup?: IHeaderFooterGroup<HeaderWrapper>;
        lineNumbers?: ILineNumberAttributes;
        page?: {
            borders?: IPageBordersOptions;
            margin?: IPageMarginAttributes;
            pageNumbers?: IPageNumberTypeAttributes;
            size?: Partial<IPageSizeAttributes>;
            textDirection?: typeof PageTextDirectionType[keyof typeof PageTextDirectionType];
        };
        titlePage?: boolean;
        type?: typeof SectionType[keyof typeof SectionType];
        verticalAlign?: SectionVerticalAlign;
    }
    Index

    Properties

    Column layout settings (count, spacing, equal width)

    footerWrapperGroup?: IHeaderFooterGroup<FooterWrapper>

    Footer definitions for default, first, and even pages

    Document grid settings for precise East Asian character layout

    headerWrapperGroup?: IHeaderFooterGroup<HeaderWrapper>

    Header definitions for default, first, and even pages

    lineNumbers?: ILineNumberAttributes

    Line numbering settings for the section

    page?: {
        borders?: IPageBordersOptions;
        margin?: IPageMarginAttributes;
        pageNumbers?: IPageNumberTypeAttributes;
        size?: Partial<IPageSizeAttributes>;
        textDirection?: typeof PageTextDirectionType[keyof typeof PageTextDirectionType];
    }

    Page-level settings including size, margins, borders, and text direction

    Type Declaration

    titlePage?: boolean

    Whether first page has different header/footer

    type?: typeof SectionType[keyof typeof SectionType]

    Section break type (next page, continuous, even page, odd page)

    verticalAlign?: SectionVerticalAlign

    Vertical alignment of text on page (top, center, bottom, justified)