PathFigure
PathFigure
PathFigure
PathFigure
Class
Definition
Represents a subsection of a geometry, a single connected series of two-dimensional geometric segments.
public : sealed class PathFigure : DependencyObject, IPathFigurepublic sealed class PathFigure : DependencyObject, IPathFigurePublic NotInheritable Class PathFigure Inherits DependencyObject Implements IPathFigure// This API is not available in Javascript.
<PathFigure .../>
-or-
<PathFigure ...>
oneOrMorePathSegments
</PathFigure
- Inheritance
-
PathFigurePathFigurePathFigurePathFigure
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
Inherited properties
Examples
This example creates a simple PathGeometry made up of a single PathFigure with a LineSegment and displays it using a Path element. The PathFigure object's StartPoint is set to (10,20) and a LineSegment is defined with an end point of (100,130).
<Canvas>
<Path Stroke="Black" StrokeThickness="4">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigure StartPoint="10,20">
<PathFigure.Segments>
<LineSegment Point="100,130"/>
</PathFigure.Segments>
</PathFigure>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
</Canvas>
<Canvas>
<Path Stroke="Black" StrokeThickness="4" >
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigure StartPoint="10,50">
<PathFigure.Segments>
<BezierSegment Point1="100,0"
Point2="200,200"
Point3="300,100"/>
<LineSegment Point="400,100" />
<ArcSegment Size="50,50"
RotationAngle="45"
IsLargeArc="True"
SweepDirection="Clockwise"
Point="200,100"/>
</PathFigure.Segments>
</PathFigure>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
</Canvas>
Remarks
PathFigureCollection is a strongly typed collection for PathFigure items. PathFigureCollection is the type used by the PathGeometry.Figures property. In XAML, specify one or more PathFigure elements for this property.
This class is relevant for setting the vector data for either a Path or a PathIcon.
Rather than creating an instance or an object element, you can also define segments and a single PathFigure as part of a vector within the string for a Move and draw commands syntax.
Constructors
PathFigure() PathFigure() PathFigure() PathFigure()
Initializes a new instance of the PathFigure class.
public : PathFigure()public PathFigure()Public Sub New()// This API is not available in Javascript.
Properties
IsClosed IsClosed IsClosed IsClosed
Gets or sets a value that indicates whether this figure's first and last segments are connected.
public : PlatForm::Boolean IsClosed { get; set; }public bool IsClosed { get; set; }Public ReadWrite Property IsClosed As bool// This API is not available in Javascript.
<PathFigure IsClosed="bool"/>
- Value
- PlatForm::Boolean bool bool bool
true if the first and last segments of the figure are connected; otherwise, false.
IsClosedProperty IsClosedProperty IsClosedProperty IsClosedProperty
Identifies the IsClosed dependency property.
public : static DependencyProperty IsClosedProperty { get; }public static DependencyProperty IsClosedProperty { get; }Public Static ReadOnly Property IsClosedProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the IsClosed dependency property.
IsFilled IsFilled IsFilled IsFilled
Gets or sets a value that indicates whether the contained area of this PathFigure is to be used for hit-testing, rendering, and clipping.
public : PlatForm::Boolean IsFilled { get; set; }public bool IsFilled { get; set; }Public ReadWrite Property IsFilled As bool// This API is not available in Javascript.
<PathFigure IsFilled="bool"/>
- Value
- PlatForm::Boolean bool bool bool
true if the contained area of this PathFigure is to be used for hit-testing, rendering, and clipping; otherwise, false. The default is true.
IsFilledProperty IsFilledProperty IsFilledProperty IsFilledProperty
Identifies the IsFilled dependency property.
public : static DependencyProperty IsFilledProperty { get; }public static DependencyProperty IsFilledProperty { get; }Public Static ReadOnly Property IsFilledProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the IsFilled dependency property.
Segments Segments Segments Segments
Gets or sets the collection of segments that define the shape of this PathFigure object.
public : PathSegmentCollection Segments { get; set; }public PathSegmentCollection Segments { get; set; }Public ReadWrite Property Segments As PathSegmentCollection// This API is not available in Javascript.
<PathFigure>
oneOrMorePathSegments
</PathFigure>
The collection of segments that define the shape of this PathFigure object. The default is an empty collection.
SegmentsProperty SegmentsProperty SegmentsProperty SegmentsProperty
Identifies the Segments dependency property.
public : static DependencyProperty SegmentsProperty { get; }public static DependencyProperty SegmentsProperty { get; }Public Static ReadOnly Property SegmentsProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the Segments dependency property.
StartPoint StartPoint StartPoint StartPoint
Gets or sets the Point where the PathFigure begins.
public : Point StartPoint { get; set; }public Point StartPoint { get; set; }Public ReadWrite Property StartPoint As Point// This API is not available in Javascript.
<PathFigure StartPoint="x,y"/>
StartPointProperty StartPointProperty StartPointProperty StartPointProperty
Identifies the StartPoint dependency property.
public : static DependencyProperty StartPointProperty { get; }public static DependencyProperty StartPointProperty { get; }Public Static ReadOnly Property StartPointProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the StartPoint dependency property.