Share via


TrailingCharacter Property

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

WdTrailingCharacter

WdTrailingCharacter can be one of these WdTrailingCharacter constants.
wdTrailingNone
wdTrailingSpace
wdTrailingTab

expression.TrailingCharacter

expression   Required. An expression that returns a ListLevel object.

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