Click or drag to resize

CurvesCommandPoints Property

Gets or sets the points that define the curve.

Namespace:  Atalasoft.Imaging.ImageProcessing.Effects
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public PointF[] Points { get; set; }

Property Value

Type: PointF
The points that define the curve.
Exceptions
ExceptionCondition
Occurs if null is passed as the points parameter or if an empty array is passed in.
Occurs if the array has more than 256 elements or a duplicate X value was found.
Occurs if the points array contains invalid values.
Remarks

At least one point must be provided, with a maximum of 256 points.

Each point value must have a range from 0.0 to 1.0. There can be no duplicate PointF.X values can be in the array.

Examples
CurvesCommand Class
See Also