ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > WIDTH |
This parameter determines the width of PS page to load.
Long
Default Value: 0
Valid Values: Any positive value
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter = currentFormat.GetParamCopy("WIDTH")
currentParameter.value.Long = 1
currentFormat.UpdateParamFrom currentParameter
|