IScriptingEventsOnSelectionMailMergeDocument Method |
Called for each document created during a mail-merge.
Namespace:
SuperOffice.COM.ScriptEvents
Assembly:
Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntaxvoid OnSelectionMailMergeDocument(
int contactId,
int personId,
int documentId
)
Sub OnSelectionMailMergeDocument (
contactId As Integer,
personId As Integer,
documentId As Integer
)
Dim instance As IScriptingEvents
Dim contactId As Integer
Dim personId As Integer
Dim documentId As Integer
instance.OnSelectionMailMergeDocument(contactId,
personId, documentId)
void OnSelectionMailMergeDocument(
[InAttribute] int contactId,
[InAttribute] int personId,
[InAttribute] int documentId
)
Parameters
- contactId
- Type: SystemInt32
- personId
- Type: SystemInt32
- documentId
- Type: SystemInt32
ExamplesDescription
This text may be copied to the notepad, and saved as a *.vbs file.
Sub OnSelectionMailmergeDocument
SOMessageBox "Perform a mail merge was clicked on selection task panel"
End Sub
See Also