TrailingCharacter Property
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
Applies to | ListLevel Object
See Also | Alignment Property | NumberPosition Property | TextPosition Property