IPXC_Page::PlaceContent Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXC_Page::PlaceContent Method}}
 
{{#customTitle:IPXC_Page::PlaceContent Method}}
{{#parentPage:PXV:IPXC_Page|method}}
+
{{#parentPage:PXV:IPXC_Page#Methods|PlaceContent|method}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Allows placing content on the page with given flags.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT PlaceContent([in] IPXC_Content* pContent, [in, defaultvalue(0)] ULONG nFlags);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT PlaceContent([in]                   IPXC_Content* pContent,
 +
                    [in, defaultvalue(0)] ULONG         nFlags);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pContent''
+
;pContent
:[in]  Pointer to [[PXV:IPXC_Content|IPXC_Content]].
+
:[in]  Pointer to [[PXV:IPXC_Content|IPXC_Content]] containing the content that would be placed on the page.
;''nFlags''
+
;nFlags
:[in, defaultvalue(0)]  Value of ULONG.
+
:[in, defaultvalue(0)]  Value of ULONG containing the [[PXV:PXC_PlaceContentFlags|place content flags]].
  
 
== Return Value ==
 
== Return Value ==
Line 20: Line 21:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IPXC_Page|IPXC_Page]].
+
[[PXV:IPXC_Page|IPXC_Page]]

Latest revision as of 12:49, 28 April 2016


Allows placing content on the page with given flags.

Syntax

HRESULT PlaceContent([in]                   IPXC_Content*  pContent,
                     [in, defaultvalue(0)]  ULONG          nFlags);

Parameters

pContent
[in] Pointer to IPXC_Content containing the content that would be placed on the page.
nFlags
[in, defaultvalue(0)] Value of ULONG containing the place content flags.

Return Value

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

See Also

IPXC_Page