IColor::GetRGB Method

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

Latest revision as of 03:20, 16 March 2017


Gets the RGB value of the current color.

Syntax

HRESULT GetRGB([out]  float*  nR,
               [out]  float*  nG,
               [out]  float*  nB);

Parameters

nR
[out] Pointer to float containing the Red value of the color. Can vary between 0 and 1.
nG
[out] Pointer to float containing the Green value of the color. Can vary between 0 and 1.
nB
[out] Pointer to 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