ImageEn, unit iexPdfiumCore |
|
TPdfObject.PathFillMode
Declaration
property PathFillMode: TPdfFillMode;
Description
Specify whether a closed path is filled (pfAlternate or pfWinding) or not (pfNone).
Note: An object is closed if its
path terminates with a Closing Break ($FFFEE)
Read/write
// Remove the fill from the current path
ImageEnView1.PdfViewer.Objects[idx].PathFillMode := pfNone;
// Which is the same as...
ImageEnView1.PdfViewer.Objects[idx].FillColor := TColor2TRGBA( clWhite, 0 );
See Also
◼FillColor◼GetPath◼GetTextFont◼LineCap◼LineJoin◼PathStrokeWidth◼StrokeColor◼StrokeWidth