TrailingCharacter Property

Applies To

ListLevel object.

Description

Returns or sets the character inserted after the number for the specified list level. Can be one of the following WdTrailingCharacter constants: wdTrailingNone, wdTrailingSpace, or wdTrailingTab. Read/write Long.

See Also

Alignment property, NumberPosition property, TextPosition property.

Example

This example sets the number and text alignment for each level of the sixth outline-numbered list template. The number for each level is followed by a space.

r = 0
For Each lev In ListGalleries(wdOutlineNumberGallery) _
        .ListTemplates(6).ListLevels
    lev.Alignment = wdListLevelAlignLeft
    lev.NumberPosition = r
    lev.TextPosition = r
    lev.TrailingCharacter = wdTrailingSpace
    r = r + 18
Next lev