IColor::SetRGB Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IColor::SetRGB Method}}
 
{{#customTitle:IColor::SetRGB Method}}
{{#parentPage:PXV:IColor|method}}
+
{{#parentPage:PXV:IColor#Methods|SetRGB|method}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Sets the RGB value of the current color.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT SetRGB([in] float nR, [in] float nG, [in] float nB);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT SetRGB([in] float nR,
 +
              [in] float nG,
 +
              [in] float nB);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''nR''
+
;nR
:[in]  Value of float.
+
:[in]  Value of float containing the Red value of the color. Can vary between '''0''' and '''1'''.
;''nG''
+
;nG
:[in]  Value of float.
+
:[in]  Value of float containing the Green value of the color. Can vary between '''0''' and '''1'''.
;''nB''
+
;nB
:[in]  Value of float.
+
:[in]  Value of float containing the Blue value of the color. Can vary between '''0''' and '''1'''.
  
 
== Return Value ==
 
== Return Value ==
Line 22: Line 24:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IColor|IColor]].
+
[[PXV:IColor|IColor]]

Latest revision as of 03:20, 16 March 2017


Sets the RGB value of the current color.

Syntax

HRESULT SetRGB([in]  float  nR,
               [in]  float  nG,
               [in]  float  nB);

Parameters

nR
[in] Value of float containing the Red value of the color. Can vary between 0 and 1.
nG
[in] Value of float containing the Green value of the color. Can vary between 0 and 1.
nB
[in] Value of float containing the Blue value of the color. Can vary between 0 and 1.

Return Value

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

See Also

IColor