IIXC_Page::Place Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 5: Line 5:
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
'''Place''' copies a specified rectangular area from one page into another.
  
 
== Syntax ==
 
== Syntax ==
Line 16: Line 16:
 
== Parameters ==
 
== Parameters ==
 
;pRect
 
;pRect
:[in]  Pointer to RECT.
+
:[in]  Pointer to RECT structure which defines the destination rectangle.
 
;srcPage
 
;srcPage
:[in]  Pointer to [[PXV:IIXC_Page|IIXC_Page]].
+
:[in]  Pointer to [[PXV:IIXC_Page|IIXC_Page]] of the destination page on which the copy will be placed.
 
;nSX
 
;nSX
:[in]  Value of LONG.
+
:[in]  Specifies the x-coordinate, in pixels, of the upper-left corner of the source rectangle.
 
;nSY
 
;nSY
:[in]  Value of LONG.
+
:[in]  Specifies the y-coordinate, in pixels, of the upper-left corner of the source rectangle.
 
;nFlags
 
;nFlags
:[in]  Value of ULONG.
+
:[in]  Combination of flags which specifies how the data will be copied. The following flags can be used:
 +
 
  
 
== Return Value ==
 
== Return Value ==

Revision as of 07:56, 28 April 2015


Place copies a specified rectangular area from one page into another.

Syntax

HRESULT Place([in]  RECT*       pRect,
              [in]  IIXC_Page*  srcPage,
              [in]  LONG        nSX,
              [in]  LONG        nSY,
              [in]  ULONG       nFlags);

Parameters

pRect
[in] Pointer to RECT structure which defines the destination rectangle.
srcPage
[in] Pointer to IIXC_Page of the destination page on which the copy will be placed.
nSX
[in] Specifies the x-coordinate, in pixels, of the upper-left corner of the source rectangle.
nSY
[in] Specifies the y-coordinate, in pixels, of the upper-left corner of the source rectangle.
nFlags
[in] Combination of flags which specifies how the data will be copied. The following flags can be used:


Return Value

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

See Also

See also IIXC_Page.