API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.Author property
Specifies the document author
Syntax:
Property Get Author() As String
Property Let Author(ByVal Value As String)
Remarks:
The Author property specifies or returns the author of a PDF file.
Examples:
The following VBA example publishes the active document to PDF and specifies the file's author, subject, and keywords.
Sub Test()
With ActiveDocument.PDFSettings
  .Author = "Graphix Design, Inc"
  .Keywords = "Animals, Farm, Bulls"
  .Subject = "Animal Farms"
End With
ActiveDocument.PublishToPDF "C:\MyFarm.pdf" 
End Sub