IColor::SetRGB Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
Line 3: Line 3:
 
{{#customTitle:IColor::SetRGB Method}}
 
{{#customTitle:IColor::SetRGB Method}}
 
{{#parentPage:PXV:IColor#Methods|SetRGB|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 ==
Line 15: Line 14:
 
== 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 ==

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