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