IColor::GetGray Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
{{#customTitle:IColor::GetGray Method}}
 
{{#customTitle:IColor::GetGray Method}}
 
{{#parentPage:PXV:IColor#Methods|GetGray|method}}
 
{{#parentPage:PXV:IColor#Methods|GetGray|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Gets the shade of gray value of the current color. The value can be between '''0''' (black) and '''1''' (white).
 
+
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT GetGray([out]  float*  Val);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT GetGray([out]  float*  nVal);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Val
+
;nVal
:[out]  Pointer to float.
+
:[out]  Pointer to float containing the shade of gray value.
  
 
== Return Value ==
 
== Return Value ==

Latest revision as of 03:14, 16 March 2017


Gets the shade of gray value of the current color. The value can be between 0 (black) and 1 (white).

Syntax

HRESULT GetGray([out]  float*  nVal);

Parameters

nVal
[out] Pointer to float containing the shade of gray value.

Return Value

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

See Also

IColor