QuadraticBezierSegment

Inheritance: PathSegment AvaloniaUI documentation: QuadraticBezierSegment API

Constructors

ConstructorsDescription

QuadraticBezierSegment(point1: Point, point2: Point)

Creates a QuadraticBezierSegment widget.

Properties

PropertiesDescription

reference(value: ViewRef)

Link a ViewRef to access the direct QuadraticBezierSegment control instance.

Usages

QuadraticBezierSegment(Point(50., 0.), Point(50., -50.))

Get access to the underlying QuadraticBezierSegment

let pathSegmentRef = ViewRef<QuadraticBezierSegment>()

QuadraticBezierSegment(Point(50., 0.), Point(50., -50.))
    .reference(pathSegmentRef)

Last updated