ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > USE_CROP_BOX |
True - use PDF crop box rectangle for page layout; False - use PDF media rectangle for page layout.
AT_BOOL
Valid Values: False, True
Default Value: True
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter =
currentFormat.GetParamCopy("USE_CROP_BOX")
currentParameter.value.Boolean = False
currentFormat.UpdateParamFrom currentParameter
|