ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > TYPE |
(Used with PostScript write only.) This parameter specifies a type of the output PostScript document when saving to PostScript.
UINT
Valid Values: One of the following:
Default Value: IG_POSTSCRIPT = 0
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter = currentFormat.GetParamCopy("TYPE")
currentParameter.value.Long = IG_EPS_STANDARD_PREVIEW
currentFormat.UpdateParamFrom currentParameter
|