|
|
|
|
|
- Properties specific to docNumbering variables
- Adding a numbering description to a document
- Using numberings created programmatically
docNumbering (Variable type)
The docNumbering type is used to define the advanced characteristics of a numbering used in a Word Processing document. The characteristics of this numbering can be defined and modified using various WLanguage properties. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
MyDoc is Document = WP_NoName1
MyNumbering is docNumbering
Level is docNumberingLevel
Level.Text = "%1) "
Level.Text = "%1) "
Level.InitialValue = 1
Level.PageLayout.IndentFirstLine = 10
Level.Format = numfRomanUppercase
Add(MyNumbering.Level, Level)
Level.Text = "%2] "
Level.InitialValue = 1
Level.PageLayout.IndentFirstLine = 20
Level.Format = numfUppercaseLetter
Add(MyNumbering.Level, Level)
Level.Text = "%3\ "
Level.InitialValue = 1
Level.PageLayout.IndentFirstLine = 30
Level.Format = numfLowercaseLetter
Add(MyNumbering.Level, Level)
let id = Add(MyDoc.Numbering, MyNumbering)
MyDoc.Paragraph[1].Numbering.Identifier = id
MyDoc.Paragraph[1].Numbering.Level = 1
WP_NoName1 = MyDoc
Propiedades Properties specific to docNumbering variables The following properties can be used to handle a numbering description: | | | Property name | Type used | Effect |
---|
Identifier | Integer | Identifier of numbering. This identifier can be used to specify the numbering used by a paragraph. This property is defined when the numbering is added to the document. This property is read-only. | Level | Array of docNumberingLevel | List of descriptions of numbering levels. | Name | Character string | Name of numbering. | Tmpl | Character string | Specific identifier for using the numbering in MS Word. This property is read-only. | Note These properties can be used using one of two syntaxes: - <Variable name>.<Property name>
- <Variable name>.<Property name>
Observaciones Adding a numbering description to a document To add a numbering description to a document, you have the ability to use Add with the following syntax: Add(Document.Numbering, MyNumbering) where: Using numberings created programmatically The numberings created programmatically can be used via the ribbon. They appear in the ribbon, in the "Paragraphs" group, by expanding the  option, in the "Document numbering" group.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|