PdfTextMarkupAnnotation Constructor (RectangleF,
PointF
)
|
Initializes new instance of class.
Namespace:
Spire.Pdf.Annotations
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public PdfTextMarkupAnnotation(
RectangleF rectangle,
PointF[] quadPoints
)
Public Sub New (
rectangle As RectangleF,
quadPoints As PointF()
)
public:
PdfTextMarkupAnnotation(
RectangleF rectangle,
array<PointF>^ quadPoints
)
new :
rectangle : RectangleF *
quadPoints : PointF[] -> PdfTextMarkupAnnotation
Parameters
-
rectangle
-
Type:
System.Drawing
RectangleF
The bounds of the annotation.
-
quadPoints
-
Type:
System.Drawing
PointF
The points specifying the coordinates of n quadrilaterals.
Remarks
The bounds of the annotation will take the union of rectangle and the smallest rectangle enclosing the points.
See Also