FormatProperties
.
ClipPath
Clipping region for the canvas.
Example
=
Paragraph
{
StripedBox
(
"No clipping"
,
null
);
Space
;
StripedBox
(
"Clipping path"
,
Shape
{
ClosedPath
(100, 0) {
LineTo
(150, 120);
LineTo
(50, 120);
}
}
);
};
No clipping
Clipping path