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