API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.Bleed property
Specifies the bleed amount in tens of micron
Syntax:
Property Get Bleed() As Long
Property Let Bleed(ByVal Value As Long)
Remarks:
The Bleed property specifies the bleed value, measured in tenths of a micron, of a PDF file. To include a bleed for a document, the PDFVBASettings.IncludeBleed property must be specified as True.
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