Previous Document Next Document

Object Model Reference : Classes : P : PDFVBASettings : Properties : PDFVBASettings.IncludeBleed


PDFVBASettings.IncludeBleed

Property IncludeBleed As Boolean

Description

Member of PDFVBASettings

The IncludeBleed property determines whether to include a bleed in a PDF document.

 
The Bleed property sets the bleed value, measured in tenths of a micron.
VBA example

The following VBA example creates a 1" bleed area around the page and then publishes the active document to PDF.

Sub Test()
 With ActiveDocument.PDFSettings
  .IncludeBleed = True
  .Bleed = CorelScriptTools.FromInches(1)
 End With
 ActiveDocument.PublishToPDF "C:\MyDocument.pdf"
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.