API Documentation > CorelDRAW > 2025-v26 > PrintPrepress > IPrnVBAPrintPrepress
PrintPrepress.RegistrationStyle property
Specifies the registration mark style to be used
Syntax:
Property Get RegistrationStyle() As PrnRegistrationStyle
Property Let RegistrationStyle(ByVal Value As PrnRegistrationStyle)
Remarks:
The RegistrationStyle property determines, through PrnRegistrationStyle, the style of the registration marks that are printed. To print the registration marks, you must enable the PrintPrepress.RegistrationMarks property.
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