PathSegmentCollection Class
Represents a collection of PathSegment objects that can be individually accessed by index.
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
'Declaration <LocalizabilityAttribute(LocalizationCategory.None, Readability := Readability.Unreadable)> _ Public NotInheritable Class PathSegmentCollection _ Inherits Animatable _ Implements IList, ICollection, IList(Of PathSegment), _ ICollection(Of PathSegment), IEnumerable(Of PathSegment), IEnumerable 'Usage Dim instance As PathSegmentCollection
<PathSegmentCollection .../>
<object> <object.property> oneOrMorePathSegmentObjectElements </object.property> </object>
XAML Values
Except as noted, members of this class behave exactly as described by the IList(Of T), ICollection(Of T), and IEnumerable(Of T) documentation.
Freezable Features: Because it inherits from the Freezable class, the PathSegmentCollection class provides several special features: PathSegmentCollection objects can be declared as resources, shared among multiple objects, made read-only to improve performance, cloned, and made thread-safe. For more information about the different features provided by Freezable objects, see the Freezable Objects Overview.
This example shows how to create a shape using the PathGeometry class. PathGeometry objects are composed of one or more PathFigure objects; each PathFigure represents a different "figure" or shape. Each PathFigure is itself composed of one or more PathSegment objects, each representing a connected portion of the figure or shape. Segment types include LineSegment, ArcSegment, and BezierSegment.
The following example uses a PathGeometry to create a triangle. The PathGeometry is displayed using a Path element.
<Path Stroke="Black" StrokeThickness="1"> <Path.Data> <PathGeometry> <PathGeometry.Figures> <PathFigureCollection> <PathFigure IsClosed="True" StartPoint="10,100"> <PathFigure.Segments> <PathSegmentCollection> <LineSegment Point="100,100" /> <LineSegment Point="100,50" /> </PathSegmentCollection> </PathFigure.Segments> </PathFigure> </PathFigureCollection> </PathGeometry.Figures> </PathGeometry> </Path.Data> </Path>
The following illustration shows the shape created in the previous example.

The previous example showed how to create a relatively simple shape, a triangle. A PathGeometry can also be used to create more complex shapes, including arcs and curves. For examples, see How to: Create an Elliptical Arc, How to: Create a Cubic Bezier Curve, and How to: Create a Quadratic Bezier Curve.
This example is part of larger sample; for the complete sample, see the Geometries Sample.
System.Windows.Threading.DispatcherObject
System.Windows.DependencyObject
System.Windows.Freezable
System.Windows.Media.Animation.Animatable
System.Windows.Media.PathSegmentCollection
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.