Word.TextColumnAddOptions interface
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Represents options for a new text column in a document or section of a document.
Remarks
Properties
is |
If provided, specifies whether to evenly space all the text columns in the document. The default value is |
spacing | If provided, specifies the spacing between the text columns in the document, in points. The default value is -1, which means Word will automatically determine the width based on the number of columns and page size. |
width | If provided, specifies the width of the new text column in the document, in points. The default value is -1, which means Word will automatically determine the width based on the number of columns and page size. |
Property Details
isEvenlySpaced
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
If provided, specifies whether to evenly space all the text columns in the document. The default value is true
.
isEvenlySpaced?: boolean;
Property Value
boolean
Remarks
spacing
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
If provided, specifies the spacing between the text columns in the document, in points. The default value is -1, which means Word will automatically determine the width based on the number of columns and page size.
spacing?: number;
Property Value
number
Remarks
width
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
If provided, specifies the width of the new text column in the document, in points. The default value is -1, which means Word will automatically determine the width based on the number of columns and page size.
width?: number;
Property Value
number