alexa

    Show / Hide Table of Contents

    Interface ICubicCurveSegment

    Represents a cubiccurvecegment takes in two control points for each point.To create a cubic Bezier, need to specify three sets of coordinates.

    Inherited Members
    IConnectorSegment.BezierSmoothness
    IConnectorSegment.Constraints
    Namespace: Syncfusion.UI.Xaml.Diagram
    Assembly: Syncfusion.SfDiagram.WPF.dll
    Syntax
    public interface ICubicCurveSegment : IConnectorSegment, INotifyPropertyChanged

    Properties

    Point1

    Gets or sets a source control point of the cubiccurve segement.

    Declaration
    Point? Point1 { get; set; }
    Property Value
    Type
    System.Nullable<System.Windows.Point>

    Point2

    Gets or sets a target control point of the cubiccurve segement.

    Declaration
    Point? Point2 { get; set; }
    Property Value
    Type
    System.Nullable<System.Windows.Point>

    Point3

    Gets or sets a end control point of the cubiccurve segement.

    Declaration
    Point? Point3 { get; set; }
    Property Value
    Type
    System.Nullable<System.Windows.Point>

    Vector1

    Gets or sets the vector representation of Point1.

    Declaration
    Vector? Vector1 { get; set; }
    Property Value
    Type
    System.Nullable<System.Windows.Vector>

    Vector2

    Gets or sets the vector representation of Point2.

    Declaration
    Vector? Vector2 { get; set; }
    Property Value
    Type
    System.Nullable<System.Windows.Vector>
    Back to top Generated by DocFX