IPXC_PolygonSrcF::InsertFrom Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
(9 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXC_PolygonSrcF::InsertFrom Method}}
 
{{#customTitle:IPXC_PolygonSrcF::InsertFrom Method}}
 +
{{#parentPage:PXV:IPXC_PolygonSrcF#Methods|InsertFrom|method}}
 +
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Inserts points from the source polygon's points array.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT InsertFrom([in] IPXC_PolygonSrcF* pSrc, [in, optional] ULONG nStartSrcIndex, [in, optional] ULONG nSrcItemsCount, [in, optional] ULONG nDstIndex);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT InsertFrom([in]                   IPXC_PolygonSrcF* pSrc,
 +
                  [in, defaultvalue(0)]   ULONG             nStartSrcIndex,
 +
                  [in, defaultvalue(-1)] ULONG             nSrcItemsCount,
 +
                  [in, defaultvalue(-1)] ULONG             nDstIndex);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pSrc''
+
;pSrc
:[in]  Pointer to [[PXV:IPXC_PolygonSrcF|IPXC_PolygonSrcF]].
+
:[in]  Pointer to [[PXV:IPXC_PolygonSrcF|IPXC_PolygonSrcF]] containing the source polygon's point array.
;''nStartSrcIndex''
+
;nStartSrcIndex
:[in, optional]  Value of ULONG.
+
:[in, defaultvalue(0)]  Value of ULONG containing the start index of the items in the source polygon's point array that would be inserted.
;''nSrcItemsCount''
+
;nSrcItemsCount
:[in, optional]  Value of ULONG.
+
:[in, defaultvalue(-1)]  Value of ULONG containing the number of items from the source polygon's point array that would be inserted.
;''nDstIndex''
+
;nDstIndex
:[in, optional]  Value of ULONG.
+
:[in, defaultvalue(-1)]  Value of ULONG containing the destination index in the current polygon's point array where the items from the source polygon's point array would be inserted.
  
 
== Return Value ==
 
== Return Value ==
Line 21: Line 27:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IPXC_PolygonSrcF|IPXC_PolygonSrcF]].
+
[[PXV:IPXC_PolygonSrcF|IPXC_PolygonSrcF]]

Latest revision as of 04:20, 18 March 2016


Inserts points from the source polygon's points array.

Syntax

HRESULT InsertFrom([in]                    IPXC_PolygonSrcF*  pSrc,
                   [in, defaultvalue(0)]   ULONG              nStartSrcIndex,
                   [in, defaultvalue(-1)]  ULONG              nSrcItemsCount,
                   [in, defaultvalue(-1)]  ULONG              nDstIndex);

Parameters

pSrc
[in] Pointer to IPXC_PolygonSrcF containing the source polygon's point array.
nStartSrcIndex
[in, defaultvalue(0)] Value of ULONG containing the start index of the items in the source polygon's point array that would be inserted.
nSrcItemsCount
[in, defaultvalue(-1)] Value of ULONG containing the number of items from the source polygon's point array that would be inserted.
nDstIndex
[in, defaultvalue(-1)] Value of ULONG containing the destination index in the current polygon's point array where the items from the source polygon's point array would be inserted.

Return Value

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

See Also

IPXC_PolygonSrcF