IXC_Channel Enumeration
From PDF XChange PDF SDK
(→See Also) |
|||
Line 5: | Line 5: | ||
{{ToReview}} | {{ToReview}} | ||
− | + | The '''IXC_Channel''' enumeration specifies the channel to which the function should be applied. | |
== Syntax == | == Syntax == | ||
Line 20: | Line 20: | ||
== Constants == | == Constants == | ||
;Channel_B | ;Channel_B | ||
− | :The | + | :The indicates that the function must be applied to the Blue channel of the page. |
;Channel_G | ;Channel_G | ||
− | :The . | + | :The indicates that the function must be applied to the Green channel of the page. If the page doesn't contain a green channel (for example is grayscaled), the corresponding function will fails. |
;Channel_R | ;Channel_R | ||
− | :The . | + | :The indicates that the function must be applied to the Red channel of the page. If the page doesn't contain a red channel (for example is grayscaled), the corresponding function will fails. |
;Channel_A | ;Channel_A | ||
− | :The . | + | :The indicates that the function must be applied to the Alpha channel of the page. If the page doesn't contain an Alpha channel, the corresponding function will fails. |
;Channel_Gray | ;Channel_Gray | ||
− | :The | + | :The indicates that the function must be applied to the Gray channel of the page, and used only for grayscaled pages. |
== See Also == | == See Also == |
Revision as of 01:58, 29 April 2015
The IXC_Channel enumeration specifies the channel to which the function should be applied.
Syntax
enum IXC_Channel { Channel_B = 0; Channel_G = 1; Channel_R = 2; Channel_A = 3; Channel_Gray = 0; };
Constants
- Channel_B
- The indicates that the function must be applied to the Blue channel of the page.
- Channel_G
- The indicates that the function must be applied to the Green channel of the page. If the page doesn't contain a green channel (for example is grayscaled), the corresponding function will fails.
- Channel_R
- The indicates that the function must be applied to the Red channel of the page. If the page doesn't contain a red channel (for example is grayscaled), the corresponding function will fails.
- Channel_A
- The indicates that the function must be applied to the Alpha channel of the page. If the page doesn't contain an Alpha channel, the corresponding function will fails.
- Channel_Gray
- The indicates that the function must be applied to the Gray channel of the page, and used only for grayscaled pages.