IAUX_Inst::GetStdPaperInfo Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 9: Line 9:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT GetStdPaperInfo([in]  StdPaperID        PaperID,
+
<pre class="brush:cpp;gutter:false">HRESULT GetStdPaperInfo([in]  StdPaperID        nPaperID,
                         [out]  StdPaperGroupID*  Group,
+
                         [out]  StdPaperGroupID*  nGroup,
                         [out]  double*          Width,
+
                         [out]  double*          nWidth,
                         [out]  double*          Height);</pre>
+
                         [out]  double*          nHeight);</pre>
  
 
== Parameters ==
 
== Parameters ==
;PaperID
+
;nPaperID
 
:[in]  Value of [[PXV:StdPaperID|StdPaperID]].
 
:[in]  Value of [[PXV:StdPaperID|StdPaperID]].
;Group
+
;nGroup
 
:[out]  Pointer to [[PXV:StdPaperGroupID|StdPaperGroupID]].
 
:[out]  Pointer to [[PXV:StdPaperGroupID|StdPaperGroupID]].
;Width
+
;nWidth
 
:[out]  Pointer to double.
 
:[out]  Pointer to double.
;Height
+
;nHeight
 
:[out]  Pointer to double.
 
:[out]  Pointer to double.
  

Revision as of 03:12, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT GetStdPaperInfo([in]   StdPaperID        nPaperID,
                        [out]  StdPaperGroupID*  nGroup,
                        [out]  double*           nWidth,
                        [out]  double*           nHeight);

Parameters

nPaperID
[in] Value of StdPaperID.
nGroup
[out] Pointer to StdPaperGroupID.
nWidth
[out] Pointer to double.
nHeight
[out] Pointer to double.

Return Value

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

See Also

IAUX_Inst