TrailingCharacter 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