|
#nullable disable
namespace Microsoft.Maui.Controls.Shapes
{
/// <include file="../../../docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml" path="Type[@FullName='Microsoft.Maui.Controls.Shapes.PolyLineSegment']/Docs/*" />
public class PolyLineSegment : PathSegment
{
/// <include file="../../../docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml" path="//Member[@MemberName='.ctor'][1]/Docs/*" />
public PolyLineSegment()
{
Points = new PointCollection();
}
/// <include file="../../../docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml" path="//Member[@MemberName='.ctor'][2]/Docs/*" />
public PolyLineSegment(PointCollection points)
{
Points = points;
}
/// <summary>Bindable property for <see cref="Points"/>.</summary>
public static readonly BindableProperty PointsProperty =
BindableProperty.Create(nameof(Points), typeof(PointCollection), typeof(PolyLineSegment), null);
/// <include file="../../../docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml" path="//Member[@MemberName='Points']/Docs/*" />
public PointCollection Points
{
set { SetValue(PointsProperty, value); }
get { return (PointCollection)GetValue(PointsProperty); }
}
}
} |