API Documentation > CorelDRAW > 2025-v26 > PrintPrepress > IPrnVBAPrintPrepress
PrintPrepress.RegistrationMarks property
Specifies whether the registration marks should be printed
Syntax:
Property Get RegistrationMarks() As Boolean
Property Let RegistrationMarks(ByVal Value As Boolean)
Remarks:
The RegistrationMarks property specifies a Boolean (True or False) value that indicates whether to print registration marks. You can use the PrintPrepress.RegistrationStyle property to choose the style of the registration marks.
Examples:
The following VBA example specifies that Corel registration marks print within the page. It displays the Print dialog box and then prints the document.
Sub Test()
With ActiveDocument
  With .PrintSettings.Prepress

 .RegistrationMarks = True

 .RegistrationStyle = prnCorel
  End With
  .PrintSettings.Options.MarksToPage = True
  .PrintSettings.ShowDialog
  .PrintOut
End With 
End Sub