DefaultTabStop Property

Microsoft Publisher Visual Basic

expression.DefaultTabStop

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

Use the InchesToPoints method to convert inches to points.

Example

This example sets the DefaultTabStop property to 72 points for all text in the active publication.

Sub SetTab()

    Application.ActiveDocument.DefaultTabStop = 72
    
End Sub