IPXV_Control::CreateNewBlankDoc2 Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CreateNewBlankDoc2([in]                  BSTR  PaperSize,
+
<pre class="brush:cpp;gutter:false">HRESULT CreateNewBlankDoc2([in]                  BSTR  sPaperSize,
                           [in]                  LONG  PagesCount,
+
                           [in]                  LONG  nPagesCount,
                           [in, defaultvalue(0)]  LONG  PageRotation);</pre>
+
                           [in, defaultvalue(0)]  LONG  nPageRotation);</pre>
  
 
== Parameters ==
 
== Parameters ==
;PaperSize
+
;sPaperSize
 
:[in]  Specifies a standard paper name. For example:  
 
:[in]  Specifies a standard paper name. For example:  
 
::<tt>A4</tt>
 
::<tt>A4</tt>
Line 21: Line 21:
 
::<tt>...</tt>
 
::<tt>...</tt>
  
;PagesCount
+
;nPagesCount
 
:[in]  The initial pages count.
 
:[in]  The initial pages count.
;PageRotation
+
;nPageRotation
 
:[in, defaultvalue(0)]  The rotation angle of new pages, multiple of 90(degrees).
 
:[in, defaultvalue(0)]  The rotation angle of new pages, multiple of 90(degrees).
  

Latest revision as of 03:49, 15 June 2015


Creates and opens the new blank document.

Syntax

HRESULT CreateNewBlankDoc2([in]                   BSTR  sPaperSize,
                           [in]                   LONG  nPagesCount,
                           [in, defaultvalue(0)]  LONG  nPageRotation);

Parameters

sPaperSize
[in] Specifies a standard paper name. For example:
A4
B4
Letter/ANSI A
Tabloid/ANSI B
...
nPagesCount
[in] The initial pages count.
nPageRotation
[in, defaultvalue(0)] The rotation angle of new pages, multiple of 90(degrees).

Return Value

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

See Also

IPXV_Control