Previous Document Next Document

Object Model Reference : Classes : P : PrintOptions : Properties : PrintOptions.LinkInfo


PrintOptions.LinkInfo

Property LinkInfo As Boolean

Description

Member of PrintOptions

The LinkInfo property determines whether to print information about images with Open Prepress Interface (OPI) links on a job-information sheet.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.