New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Constructors

Initializes a new instance of the BezierDataPoint class.

C#
public BezierDataPoint()

Initializes a new instance of the BezierDataPoint class.

C#
public BezierDataPoint(double x, double y, double controlPoint1X, double controlPoint1Y, double controlPoint2X, double controlPoint2Y)
Parameters:xdouble

The x.

ydouble

The y.

controlPoint1Xdouble

The control point1 X.

controlPoint1Ydouble

The control point1 Y.

controlPoint2Xdouble

The control point2 X.

controlPoint2Ydouble

The control point2 Y.

Properties

Gets or sets the control point1 layout slot.

C#
public RadRect ControlPoint1LayoutSlot { get; }
Property Value:

The control point1 layout slot.

Gets or sets the value that is provided for the X-axis of the first control point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint1XValue { get; set; }

Gets or sets the value that is provided for the Y-axis of the first control point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint1YValue { get; set; }

Gets or sets the control point2 layout slot.

C#
public RadRect ControlPoint2LayoutSlot { get; }
Property Value:

The control point2 layout slot.

Gets or sets the value that is provided for the X-axis of the second control point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint2XValue { get; set; }

Gets or sets the value that is provided for the Y-axis of the second control point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint2YValue { get; set; }