|
|
|
|
- Properties specific to the description of docFormatMulticolumn variables
docFormatMulticolumn (Type of variable) In french: docFormatMulticolonne
The docFormatMulticolumn type is used to define all the advanced characteristics of a multicolumn section defined in a docSection variable. The characteristics of the docFormatMulticolumn variable can be identified and changed using different WLanguage properties. CAUTION: This type cannot be used directly. It must be used via the docSection type.
// Retrieve the Word Processing control MyDoc is Document <- WP_NoName1 // Defines a 3-column layout for the docx // a spacing of 20 between each column and a visible separator MyDoc.Section.Multicolumn.NumberColumn = 3 MyDoc.Section.Multicolumn.SpaceIdenticalMode = 20 MyDoc.Section.Multicolumn.Separator = True
Remarks Properties specific to the description of docFormatMulticolumn variables The following properties can be used to handle a multicolumn variable: | | | | Property name | Type used | Effect |
---|
Columns[n] | | docFormatColumn table | Configuration of each column when using a multicolumn mode with variable column width. | | Columns[n].Space | Real | Space with the following column (expressed in millimetres). | | Columns[n].Width | Real | Column width (expressed in millimetres). | SpaceIdenticalMode | Real | Space between the different columns when using a multicolumn mode with the same column width. This spacing is expressed in millimeters. | Mode | Integer constant | Multicolumn management mode: - docMulticolumnNone: No multicolumn management.
- docMulticolumnIdentical: Each column has the same width.
- docMulticolumnVariable ; Each column has a variable width.
| NumberColumn | Integer | Name of the section column. | Separator | Boolean | - True to display the column separator.
- False to avoid displaying the separator.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|