AdvancedPrintOptions.AllowBleeds Property

Publisher Developer Reference

True to allow bleeds to print for the specified publication. The default is True. Read/write Boolean.

Syntax

expression.AllowBleeds

expression   A variable that represents an AdvancedPrintOptions object.

Return Value
Boolean

Remarks

When bleeds are allowed, objects that are partially off the page print to one eighth inch outside the defined page size.

If you allow bleeds in a document, you can specify whether bleed marks are printed by using the PrintBleedMarks property of the AdvancedPrintOptions object.

This property corresponds to the Allow bleeds control on the Page Settings tab of the Advanced Print Settings dialog box.

Example

The following example sets the publication to allow bleeds, and to print bleed marks.

Visual Basic for Applications
  Sub AllowBleedsAndPrintMarks()
	With ActiveDocument.AdvancedPrintOptions
		.AllowBleeds = True
		.PrintBleedMarks = True
	End With
End Sub

See Also