ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PDF Format Filter Control Parameters Reference > PRINT_RESOLUTION_Y |
This parameter specifies the vertical resolution in dots per inch during the PDF document printing. The higher the value, the higher the quality of the image to be printed.
UINT
Default Value: 300
Valid Values: Any
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter =
currentFormat.GetParamCopy("PRINT_RESOLUTION_Y")
currentParameter.value.Long = 300
currentFormat.UpdateParamFrom currentParameter
|