Application.NewDocument Event (Publisher)
Occurs when a new publication is created.
Syntax
expression .NewDocument(Doc, )
expression A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Doc |
Required |
Document |
The new document. |
Example
This example displays a message when a new publication is created.
Private Sub appPub_NewDocument(ByVal Doc As Document)
MsgBox "This is a new publication."
End Sub