ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > AUTO_POSITION |
This parameter enables/disables AutoPositionEPSFiles option for reading PS/EPS file format.
Boolean
Default Value: True
Valid Values: False, True
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter =
currentFormat.GetParamCopy("AUTO_POSITION")
currentParameter.value.Boolean = False
currentFormat.UpdateParamFrom currentParameter
|