API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.IncludeBleed property
Specifies whether bleeds need to be created around document pages
Syntax:
Property Get IncludeBleed() As Boolean
Property Let IncludeBleed(ByVal Value As Boolean)
Remarks:
The IncludeBleed property determines whether a bleed is included when publishing to PDF. The PDFVBASettings.Bleed property specifies the bleed value, measured in tenths of a micron.
Examples:
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