| StrikeThroughCreateFromQuadrilaterals Method |
Create a new strike-through with defined area
The area to be striked through is defined by the given
markupArea.
The returned object is associated with the
targetDocument but not yet part of any page.
It can be added to a page's list of annotations.
Namespace: PdfTools.Toolbox.Pdf.AnnotationsAssembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.1.0+5820e9ca9ca173983539ffc40abc227fb62e6928
Syntax public static StrikeThrough CreateFromQuadrilaterals(
Document targetDocument,
QuadrilateralList markupArea,
Paint paint
)
Parameters
- targetDocument Document
-
The document in which the links is used
- markupArea QuadrilateralList
-
The area on the page to be striked through.
- paint Paint
-
The paint used for drawing the strike through
Return Value
StrikeThrough
The newly created object
Exceptions Exception | Condition |
---|
ArgumentException | if the targetDocument has already been closed |
ArgumentException | if the targetDocument is read-only |
ArgumentException | if the markupArea is empty |
ArgumentException | if the paint argument is not associated with targetDocument |
ArgumentException | if the paint argument has a ColorSpace other than a device color space |
ArgumentException | if the paint argument has a non-Transparency with BlendMode other than Normal |
ArgumentNullException | if targetDocument is . |
ArgumentNullException | if markupArea is . |
ArgumentNullException | if paint is . |
See Also