BezierSegment.Point3 Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets or sets the end point of the curve.
Namespace: System.Windows.Media
Assembly: System.Windows (in System.Windows.dll)
Syntax
'Declaration
Public Property Point3 As Point
public Point Point3 { get; set; }
<BezierSegment Point3="x,y"/>
XAML Values
Property Value
Type: System.Windows.Point
The end point of the curve.
Remarks
Dependency property identifier field: Point3Property
The BezierSegment class does not contain a property for the starting point of the curve; it only defines the end point. The beginning point of the curve is the current point of the PathFigure to which the BezierSegment is added.
The XAML syntax for this property specifies a new Point as a string. The delimiter between the x and y values of the point can be either a comma or a space. Note that the comma usage has potential to clash with the usage of a comma as the decimal point in some UI cultures. For more information, see the "XAML Attribute Syntax" section of Point.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also