Leader Property
Applies To
TabStop object.
Description
Returns or sets the leader for the specified TabStop object. Can be one of the following WdTabLeader constants: wdTabLeaderDashes, wdTabLeaderDots, wdTabLeaderHeavy, wdTabLeaderLines, or wdTabLeaderSpaces. Read/write Long.
See Also
Add method (TabStops collection).
Example
This example changes the leader for all tab stops with a leader to dashes for all the paragraphs in the active document.
For each tb in ActiveDocument.Paragraphs.TabStops
If tb.Leader <> wdTabLeaderSpaces Then
tb.Leader = wdTabLeaderDashes
End If
Next tb