Type Alias ISectionPropertiesOptions

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