API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.CropMarks property
Specifies whether the crop marks should be included in the document
Syntax:
Property Get CropMarks() As Boolean
Property Let CropMarks(ByVal Value As Boolean)
Remarks:
The CropMarks property determines whether crop marks are included in the final document when publishing 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