PXC_WatermarkType Enumeration
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
Line 9: | Line 9: | ||
<pre class="brush:cpp;gutter:false">enum PXC_WatermarkType | <pre class="brush:cpp;gutter:false">enum PXC_WatermarkType | ||
{ | { | ||
− | Watermark_Text = 0 | + | Watermark_Text = 0, |
− | Watermark_Image = 1 | + | Watermark_Image = 1, |
− | Watermark_PDF = 2 | + | Watermark_PDF = 2, |
}; | }; | ||
</pre> | </pre> |
Revision as of 10:08, 8 May 2015
Specifies the flags for the watermark type which should be used.
Syntax
enum PXC_WatermarkType { Watermark_Text = 0, Watermark_Image = 1, Watermark_PDF = 2, };
Constants
- Watermark_Text
- The watermark will take it's data from the text specified in the IPXC_WatermarkParams.
- Watermark_Image
- The watermark will take it's data from the Image File specified in the IPXC_WatermarkParams. Note that the specified file path should point to the existing valid image file.
- Watermark_PDF
- The watermark will take it's data from the File specified in the IPXC_WatermarkParams. Note that the specified file path should point to the existing valid PDF file.