IPXC_Document::DefaultCompression Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(5 intermediate revisions by one other user not shown)
Line 2: Line 2:
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXC_Document::DefaultCompression Property}}
 
{{#customTitle:IPXC_Document::DefaultCompression Property}}
{{#parentPage:PXV:IPXC_Document#Properties|DefaultCompression Property|property}}
+
{{#parentPage:PXV:IPXC_Document#Properties|DefaultCompression|property}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
Property '''DefaultCompression''' of interface [[PXV:IPXC_Document|IPXC_Document]] returns/sets  Pointer to [[PXV:IPXS_EncodeFiltersArray|IPXS_EncodeFiltersArray]] ...
+
Property '''DefaultCompression''' of interface [[PXV:IPXC_Document|IPXC_Document]] returns/sets  Pointer to [[PXV:IPXS_EncodeFiltersArray|IPXS_EncodeFiltersArray]] containing the encoding filters array that are used for the new PDF streams.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT get_DefaultCompression([in]          BSTR                      ptreamType,
+
<pre class="brush:cpp;gutter:false">HRESULT get_DefaultCompression([in]          BSTR                      sPtreamType,
                               [out, retval]  IPXS_EncodeFiltersArray**  ppEncoders);
+
                               [out, retval]  IPXS_EncodeFiltersArray**  pEncoders);
HRESULT put_DefaultCompression([in]  BSTR                      ptreamType,
+
HRESULT put_DefaultCompression([in]  BSTR                      sPtreamType,
                               [in]  IPXS_EncodeFiltersArray*  ppEncoders);
+
                               [in]  IPXS_EncodeFiltersArray*  pEncoders);
 
</pre>
 
</pre>
  
 
== Parameters ==
 
== Parameters ==
;ptreamType
+
;sPtreamType
:[in]  Value of BSTR.
+
:[in]  Value of BSTR containing one of the supported compression types. Possible values are: ''Image.TrueColor'', ''Image.Gray'', ''Image.Indexed'', ''Image.Monochrome'', ''General'', ''Fonts'', ''Page.Content'', ''Attachments''.
  
 
== See Also ==
 
== See Also ==
[[PXV:IPXC_Document|IPXC_Document]].
+
[[PXV:IPXC_Document|IPXC_Document]]

Latest revision as of 01:36, 16 March 2016


Property DefaultCompression of interface IPXC_Document returns/sets Pointer to IPXS_EncodeFiltersArray containing the encoding filters array that are used for the new PDF streams.

Syntax

HRESULT get_DefaultCompression([in]           BSTR                       sPtreamType,
                               [out, retval]  IPXS_EncodeFiltersArray**  pEncoders);
HRESULT put_DefaultCompression([in]  BSTR                      sPtreamType,
                               [in]  IPXS_EncodeFiltersArray*  pEncoders);

Parameters

sPtreamType
[in] Value of BSTR containing one of the supported compression types. Possible values are: Image.TrueColor, Image.Gray, Image.Indexed, Image.Monochrome, General, Fonts, Page.Content, Attachments.

See Also

IPXC_Document