 | PdfPageObjectStrokeOverprint Property |
Gets or sets an overprint flag for stroking operations.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic bool StrokeOverprint { get; set; }Public Property StrokeOverprint As Boolean
Get
Set
public:
property bool StrokeOverprint {
bool get ();
void set (bool value);
}member StrokeOverprint : bool with get, set
/** @property */
public boolean get_StrokeOverprint()
/** @property */
public void set_StrokeOverprint(boolean value)
function get_StrokeOverprint();
function set_StrokeOverprint(value);
Property Value
BooleanA flag for stroking operations, specifying whether painting in one set of colorants should cause the corresponding areas of other colorants to be erased(false) or left unchanged(true). Please see remarks section for details.
Remarks
If the OverprintMode is set to Zero (the default value), painting a color in any color space causes the corresponding areas of unspecified colorants to be erased(painted with a tint value of 0.0). The effect is that the color at any position on the page is whatever was painted there last, which is consistent with the normal painting behavior of the opaque imaging model.
If the OverprintMode is set to NonZero and the output device supports overprinting, no such erasing actions are performed; anything previously painted in other colorants is left undisturbed. Consequently, the color at a given position on the page may be a combined result of several painting operations in different colorants. The effect produced by such overprinting is device-dependent and is not defined by the PDF language.
See Also