API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.SepsInfo property
Specifies whether color separation information should be printed on job information sheet
Syntax:
Property Get SepsInfo() As Boolean
Property Let SepsInfo(ByVal Value As Boolean)
Remarks:
The SepsInfo property specifies a Boolean (True or False) value that indicates whether to print information about print separations on the information sheet for a print job.
Examples:
The following VBA example prints the job-information sheet with application information, driver information, and font information.
Sub Test()
Dim DrawPrintOptions As PrintOptions
Set DrawPrintOptions = ActiveDocument.PrintSettings.Options
With DrawPrintOptions
  .JobInformation = True
  .AppInfo = True
  .DriverInfo = True
  .PrintJobInfo = False
  .FontInfo = True
  .SepsInfo = False
End With
'print the document
ActiveDocument.PrintOut 
End Sub