IIXC_Page::FillChannel Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
m (Automatic page editing by robot)
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IIXC_Page::FillChannel Method}}
 
{{#customTitle:IIXC_Page::FillChannel Method}}
 +
{{#parentPage:PXV:IIXC_Page#Methods|FillChannel|method}}
  
The method of interface of PDF-XChange Editor SDK.
+
'''FillChannel''' fills a specified rectangle of the page with a specified color value into one specified color channel.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT FillChannel([in] IXC_Channel dstChannel, [in] RECT* pRect, [in] UCHAR value);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT FillChannel([in] IXC_Channel nDstChannel,
 +
                    [in] UCHAR        nValue,
 +
                    [in] RECT*        stRect);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''dstChannel''
+
;nDstChannel
:[in]  Value of [[PXV:IXC_Channel|IXC_Channel]].
+
:[in]  Specifies color [[PXV:IXC_Channel|channel]] which will be used.
;''pRect''
+
;nValue
:[in]  Pointer to RECT.
+
:[in]  Specifies the value which will be filled with. Possible value is from 0 to 255.
;''value''
+
;stRect
:[in]  Value of UCHAR.
+
:[in]  Pointer to RECT structure which defines the area to be filled.
  
 
== Return Value ==
 
== Return Value ==
Line 19: Line 23:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IIXC_Page|IIXC_Page]].
+
[[PXV:IIXC_Page|IIXC_Page]]

Latest revision as of 03:16, 15 June 2015

FillChannel fills a specified rectangle of the page with a specified color value into one specified color channel.

Syntax

HRESULT FillChannel([in]  IXC_Channel  nDstChannel,
                    [in]  UCHAR        nValue,
                    [in]  RECT*        stRect);

Parameters

nDstChannel
[in] Specifies color channel which will be used.
nValue
[in] Specifies the value which will be filled with. Possible value is from 0 to 255.
stRect
[in] Pointer to RECT structure which defines the area to be filled.

Return Value

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

See Also

IIXC_Page