ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PDF Format Filter Control Parameters Reference > INC_REND |
This parameter specifies whether incremental rendering or rendering at once should be performed.
Boolean
Default Value: False
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("INC_REND")
currentParameter.value.Boolean = True
currentFormat.UpdateParamFrom currentParameter
|