This example cycles through the collection of tab stops in the first paragraph in the active document, and left-aligns any custom tab stops that it finds.
For each ts in ActiveDocument.Paragraphs(1).TabStops
If ts.CustomTab = True Then ts.Alignment = wdAlignTabLeft
Next ts