IPXV_Control::PrintPages Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXV_Control::PrintPages Method}}
 
{{#customTitle:IPXV_Control::PrintPages Method}}
 +
{{#parentPage:PXV:IPXV_Control#Methods|PrintPages|method}}
 +
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Prints the specified pages range.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT PrintPages([in] ULONG nFirst, [in] ULONG nCount, [in, defaultvalue(-1)] VARIANT_BOOL bUseDefOpts);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT PrintPages([in]                   ULONG         nFirst,
 +
                  [in]                   ULONG         nCount,
 +
                  [in, defaultvalue(-1)] VARIANT_BOOL bUseDefOpts);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''nFirst''
+
;nFirst
:[in]  Value of ULONG.
+
:[in]  The zero-based index of the first page to be printed.
;''nCount''
+
;nCount
:[in]  Value of ULONG.
+
:[in]  The count of pages to be printed, including the page specified by <tt>nFirst</tt>.
;''bUseDefOpts''
+
;bUseDefOpts
:[in, defaultvalue(-1)]  Value of VARIANT_BOOL.
+
:[in, defaultvalue(-1)]  The flag that controls the using of default print-options. You may pass <tt>false</tt> to use the options last used by end-user.
  
 
== Return Value ==
 
== Return Value ==
Line 19: Line 24:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IPXV_Control|IPXV_Control]].
+
[[PXV:IPXV_Control|IPXV_Control]]

Latest revision as of 03:50, 15 June 2015


Prints the specified pages range.

Syntax

HRESULT PrintPages([in]                    ULONG         nFirst,
                   [in]                    ULONG         nCount,
                   [in, defaultvalue(-1)]  VARIANT_BOOL  bUseDefOpts);

Parameters

nFirst
[in] The zero-based index of the first page to be printed.
nCount
[in] The count of pages to be printed, including the page specified by nFirst.
bUseDefOpts
[in, defaultvalue(-1)] The flag that controls the using of default print-options. You may pass false to use the options last used by end-user.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXV_Control