Previous Document Next Document
PrintPrepress.RegistrationStyle

Property RegistrationStyle As PrnRegistrationStyle

Member of PrintPrepress

The RegistrationStyle property determines the style of the registration marks that are printed. In order to print the registration marks, you must enable the RegistrationMarks property.

The following code 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 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.