DefaultTab Property

Applies To

Dialog object.

Description

Returns or sets the active tab when the specified dialog box is displayed. Can be any of the WdWordDialogTab constants. Read/write Long.

See Also

Dialogs collection object, Show method.

Example

This example displays the Page Setup dialog box with the Paper Source tab selected.

With Dialogs(wdDialogFilePageSetup)
    .DefaultTab = wdDialogFilePageSetupTabPaperSource
    .Show
End With