ImageGear Professional for Windows ActiveX
Disabling and Enabling PostScript Support

The PDF.ENABLE_POSTSCRIPT Global Control Parameter is used to enable/disable PostScript support in PDF component.

By default the ImageGear PDF Component enables PDF and PostScript file format support. But it is possible to disable PostScript file format support if it is not required. There is a Boolean global parameter named PDF.ENABLE_POSTSCRIPT used to control this.

To disable PostScript support use the following code:

 
Copy Code
Dim curPrm As IGGlobalParameter
    Set curPrm = frmMain.IGCoreCtl1.Settings.GetParamCopy
("PDF.ENABLE_POSTSCRIPT")
    curPrm.Value.Boolean = False
    ' update the global parameter value
    frmMain.IGCoreCtl1.Settings.UpdateParamFrom curPrm

 

 


©2016. Accusoft Corporation. All Rights Reserved.

Send Feedback