Share via


UseCatalogAtStartup Property.UseCatalogAtStartup Property

Publisher Developer Reference

True for Microsoft Office Publisher to show the catalog when starting. Read/write Boolean.

Syntax

expression.UseCatalogAtStartup

expression   A variable that represents an UseCatalogAtStartup Property object.

Return Value
Boolean

Example

This example sets global options for Publisher, including not displaying the catalog upon startup.

Visual Basic for Applications
  Sub SetGlobalOptions()
    With Options
        .AutoFormatWord = True
        .AutoKeyboardSwitching = True
        .AutoSelectWord = True
        .DragAndDropText = True
        .UseCatalogAtStartup = False
        .UseHelpfulMousePointers = False
    End With
End Sub

See Also