API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.RegistrationMarks property
Specifies whether the color registration marks should be included in the document
Syntax:
Property Get RegistrationMarks() As Boolean
Property Let RegistrationMarks(ByVal Value As Boolean)
Remarks:
The RegistrationMarks property determines whether registration marks are included when publishing a document to PDF.
Examples:
The following VBA example publishes the document to PDF. Crop marks, densitometer scales, file information, and color registration marks are included in the PDF.
Sub Test()
With ActiveDocument.PDFSettings
  .CropMarks = True
  .DensitometerScales = True
  .FileInformation = True
  .RegistrationMarks = True
End With
ActiveDocument.PublishToPDF "C:\MyDocument.pdf" 
End Sub