DominoPDF COM object can be called directly from LotusScript as follows.
Dim v as Variant
Set v = CreateObject(“DominoPDFCOM.DominoPDFCOM”)
If Not v Is Nothing then
Call v.DoPDF(szInput, szOutput, szSettings)
End If
All DominoPDF methods can be called in a similar manner. For example;
Call v.DomPDFMerge(szInput, szOutput)
Call v.DomPDFAddImage(szPDF, szImage, “1”, 10, 10, 200, 400, 0)