AllowBleeds Property

Microsoft Publisher Visual Basic

AllowBleeds Property

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

expression.AllowBleeds()

expression    Required. An expression that returns an AdvancedPrintOptions object.

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.

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