IColor::CopyFrom Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
 
{{#customTitle:IColor::CopyFrom Method}}
 
{{#customTitle:IColor::CopyFrom Method}}
 
{{#parentPage:PXV:IColor#Methods|CopyFrom|method}}
 
{{#parentPage:PXV:IColor#Methods|CopyFrom|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Copies the data from the source color to the current color.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CopyFrom(  IColor*  Src);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT CopyFrom(  IColor*  pSrc);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Src
+
;pSrc
: Pointer to [[PXV:IColor|IColor]].
+
: Pointer to [[PXV:IColor|IColor]] containing the source color.
  
 
== Return Value ==
 
== Return Value ==

Latest revision as of 03:16, 16 March 2017


Copies the data from the source color to the current color.

Syntax

HRESULT CopyFrom(  IColor*  pSrc);

Parameters

pSrc
Pointer to IColor containing the source color.

Return Value

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

See Also

IColor