Click or drag to resize

PdfInkShapeSetPoints Method

Sets an array of points which should be used to form the path of the PdfInkShape.

Namespace:  RadPdf.Data.Document.Objects.Shapes
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public void SetPoints(
	PointF[] points
)

Parameters

points
Type: System.DrawingPointF
An array of PointF coordinates
Exceptions
ExceptionCondition
ArgumentNullExceptionpoints is null.
ArgumentOutOfRangeExceptionpoints contains 1 or more points which have X or Y coordinates less than 0.0 or greater than 1.0.
Remarks

All points must have X and Y coordinates which are from 0.0 to 1.0 (inclusive).

See Also