AdvancedPrintOptions.AllowBleeds property (Publisher)

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.

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.

Sub AllowBleedsAndPrintMarks() 
 With ActiveDocument.AdvancedPrintOptions 
 .AllowBleeds = True 
 .PrintBleedMarks = True 
 End With 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.