ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > SMOOTH_FLAGS |
This parameter specifies smooth settings for PostScript rasterization.
UINT
Default Value: 0
Valid Values: A bit composition of an OR of the following values:
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter =
currentFormat.GetParamCopy("SMOOTH_FLAGS")
currentParameter.value.Long = 1 Or 4
currentFormat.UpdateParamFrom currentParameter
|