Class RadCubicSegment
Represents a cubic segment of a path figure.
Inherited Members
Namespace: Telerik.XamarinForms.Common
Assembly: Telerik.XamarinForms.Common.dll
Syntax
public class RadCubicSegment : RadPathSegment, INotifyPropertyChanged
Constructors
RadCubicSegment()
Initializes a new instance of the cubic segment.
Declaration
public RadCubicSegment()
RadCubicSegment(Point, Point, Point)
Initializes a new instance of the cubic segment.
Declaration
public RadCubicSegment(Point controlPoint1, Point controlPoint2, Point endPoint)
Parameters
Xamarin.Forms.Point
controlPoint1
Specifies the first control point of the cubic segment. |
Xamarin.Forms.Point
controlPoint2
Specifies the second control point of the cubic segment. |
Xamarin.Forms.Point
endPoint
Specifies the end point of the cubic segment. |
Properties
ControlPoint1
Gets or sets the first control point of the cubic segment.
Declaration
public Point ControlPoint1 { get; set; }
Property Value
Xamarin.Forms.Point
|
ControlPoint2
Gets or sets the second control point of the cubic segment.
Declaration
public Point ControlPoint2 { get; set; }
Property Value
Xamarin.Forms.Point
|
EndPoint
Gets or sets the end point of the cubic segment.
Declaration
public Point EndPoint { get; set; }
Property Value
Xamarin.Forms.Point
|