IIXC_Page::ReplaceColor Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:IIXC_Page::ReplaceColor Method}} | {{#customTitle:IIXC_Page::ReplaceColor Method}} | ||
− | {{#parentPage:PXV:IIXC_Page|ReplaceColor | + | {{#parentPage:PXV:IIXC_Page#Methods|ReplaceColor|method}} |
− | + | The '''ReplaceColor''' method replaces one color with another in the page or rectangular area. | |
− | + | ||
− | The method replaces one color with another | + | |
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT ReplaceColor([in] ULONG | + | <pre class="brush:cpp;gutter:false">HRESULT ReplaceColor([in] ULONG nFromColor, |
− | [in] ULONG | + | [in] ULONG nToColor, |
ULONG nFlags, | ULONG nFlags, | ||
− | [in, defaultvalue(NULL)] RECT* | + | [in, defaultvalue(NULL)] RECT* stRect);</pre> |
== Parameters == | == Parameters == | ||
− | ; | + | ;nFromColor |
:[in] Specifies the color to be replaced. | :[in] Specifies the color to be replaced. | ||
− | ; | + | ;nToColor |
:[in] Specifies replacement color. | :[in] Specifies replacement color. | ||
;nFlags | ;nFlags | ||
− | : Combination of | + | : Combination of [[PXV:IXC_ColorFlags|IXC_ColorFlags]] which specifies how the data will be copied. |
− | ; | + | ;stRect |
− | :[in, defaultvalue(NULL)] Pointer to RECT structure which defines the rectangular area in which the operation will be performed. | + | :[in, defaultvalue(NULL)] Pointer to RECT structure which defines the rectangular area in which the operation will be performed. If set to <tt>NULL</tt> then the entire page will be changed. |
== Return Value == | == Return Value == | ||
Line 27: | Line 26: | ||
== See Also == | == See Also == | ||
− | + | [[PXV:IIXC_Page|IIXC_Page]] | |
− | + |
Latest revision as of 02:16, 15 June 2015
The ReplaceColor method replaces one color with another in the page or rectangular area.
Syntax
HRESULT ReplaceColor([in] ULONG nFromColor, [in] ULONG nToColor, ULONG nFlags, [in, defaultvalue(NULL)] RECT* stRect);
Parameters
- nFromColor
- [in] Specifies the color to be replaced.
- nToColor
- [in] Specifies replacement color.
- nFlags
- Combination of IXC_ColorFlags which specifies how the data will be copied.
- stRect
- [in, defaultvalue(NULL)] Pointer to RECT structure which defines the rectangular area in which the operation will be performed. If set to NULL then the entire page will be changed.
Return Value
Returns S_OK if operation was successful or error code in other cases.