Click or drag to resize
Pdftools logo

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.FourHeights.PdfToolbox.Pdf.Annotations
Assembly: PdfTools.FourHeights.PdfToolbox (in PdfTools.FourHeights.PdfToolbox.dll) Version: 4.4.1+cd45f416896d630bcd3719f4b2cba7920f2790da
Syntax
C#
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
ExceptionCondition
ArgumentExceptionif the targetDocument has already been closed
ArgumentExceptionif the targetDocument is read-only
ArgumentExceptionif the markupArea is empty
ArgumentExceptionif the paint argument is not associated with targetDocument
ArgumentExceptionif the paint argument has a ColorSpace other than a device color space
ArgumentExceptionif the paint argument has a non-Transparency with BlendMode other than Normal
ArgumentNullExceptionif targetDocument is .
ArgumentNullExceptionif markupArea is .
ArgumentNullExceptionif paint is .
See Also