Show / Hide Table of Contents

Class BezierSegment

Represents a cubic Bezier curve drawn between two points.

Inheritance
System.Object
DependencyObject
PathSegment
BezierSegment
Inherited Members
DependencyObject.GetValue(DependencyProperty)
DependencyObject.SetCurrentValue(DependencyProperty, Object)
DependencyObject.ReadLocalValue(DependencyProperty)
DependencyObject.SetValue(DependencyProperty, Object)
DependencyObject.SetValue(DependencyPropertyKey, Object)
DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs)
DependencyObject.CoerceValue(DependencyProperty)
DependencyObject.Dispatcher
DependencyObject.INTERNAL_OnAttachedToVisualTree()
DependencyObject.INTERNAL_OnDetachedFromVisualTree()
DependencyObject.ClearValue(DependencyProperty)
DependencyObject.ClearValue(DependencyPropertyKey)
DependencyObject.CheckAccess()
DependencyObject.GetAnimationBaseValue(DependencyProperty)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Media
Assembly: OpenSilver.dll
Syntax
public sealed class BezierSegment : PathSegment, IDependencyObject

Constructors

| Improve this Doc View Source

BezierSegment()

Initializes a new instance of the BezierSegment class.

Declaration
public BezierSegment()

Fields

| Improve this Doc View Source

Point1Property

Identifies the Point1 dependency property.

Declaration
public static readonly DependencyProperty Point1Property
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

Point2Property

Identifies the Point2 dependency property.

Declaration
public static readonly DependencyProperty Point2Property
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

Point3Property

Identifies the Point3 dependency property.

Declaration
public static readonly DependencyProperty Point3Property
Field Value
Type Description
DependencyProperty

Properties

| Improve this Doc View Source

Point1

Gets or sets the first control point of the curve.

Declaration
public Point Point1 { get; set; }
Property Value
Type Description
Point

The first control point of the curve. The default is a Point with value 0,0.

| Improve this Doc View Source

Point2

Gets or sets the second control point of the curve.

Declaration
public Point Point2 { get; set; }
Property Value
Type Description
Point

The second control point of the curve.

| Improve this Doc View Source

Point3

Gets or sets the end point of the curve.

Declaration
public Point Point3 { get; set; }
Property Value
Type Description
Point

The end point of the curve.

Extension Methods

DependencyObjectHelper.GetSelfAndAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestorsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualChildren(DependencyObject)
VisualTreeExtensions.GetVisualChildrenAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualDescendants(DependencyObject)
VisualTreeExtensions.GetVisualDescendantsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualSiblings(DependencyObject)
VisualTreeExtensions.GetVisualSiblingsAndSelf(DependencyObject)
  • Improve this Doc
  • View Source