Loads settings from a style
Syntax:
Function Load(ByVal SettingName As String) As Boolean
Parameters:
Name Type Description
SettingName
String
Remarks:
The Load method loads the PDF settings from a specified preset file. A Boolean (True or False) value is returned.
Examples:
The following VBA example loads the PDF for Document Distribution publishing style and uses it to publish the active document to PDF.
Sub Test()
ActiveDocument.PDFSettings.Load "PDF for Document Distribution"
ActiveDocument.PublishToPDF "C:\MyDocument.pdf" 
End Sub