ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PDF Format Filter Control Parameters Reference > SAVE_FLAGS |
(Used with PDF write only.) This parameter specifies an option for saving a PDF file that allows you to remove unreferenced objects, often reducing file size as well as to write a linearized file for page-served remote (network) access.
UINT
Default Value: IG_PDF_OPTIMIZED = 32
Valid Values: A bit composition of an OR of the following values:
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter = currentFormat.GetParamCopy("SAVE_FLAGS")
currentParameter.value.Long = 4 Or 32
currentFormat.UpdateParamFrom currentParameter
|