| PdfTextObjectTextKnockout Property |
Gets or sets the text knockout flag, which determines the behavior of overlapping glyphs within a text object in the transparent imaging model.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public bool TextKnockout { get; set; }
Public Property TextKnockout As Boolean
Get
Set
public:
property bool TextKnockout {
bool get ();
void set (bool value);
}
member TextKnockout : bool with get, set
/** @property */
public boolean get_TextKnockout()
/** @property */
public void set_TextKnockout(boolean value)
function get_TextKnockout();
function set_TextKnockout(value);
Property Value
BooleanRemarks
If its value is false, each glyph in a text object is treated as a separate elementary object; when glyphs overlap, they composite with one another.
If the parameter is true, all glyphs in the text object are treated together as a single elementary object; when glyphs overlap, later glyphs overwrite(“knock out”) earlier ones in the area of overlap.
See Also