Options.UseCatalogAtStartup property (Publisher)
True for Microsoft Publisher to show the catalog when starting. Read/write Boolean.
Syntax
expression.UseCatalogAtStartup
expression A variable that represents an Options object.
Return value
Boolean
Example
This example sets global options for Publisher, including not displaying the catalog upon startup.
Sub SetGlobalOptions()
With Options
.AutoFormatWord = True
.AutoKeyboardSwitching = True
.AutoSelectWord = True
.DragAndDropText = True
.UseCatalogAtStartup = False
.UseHelpfulMousePointers = False
End With
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.