9 instantiations of PolyLineSegment
PresentationCore (5)
System\Windows\Media\Generated\PolyLineSegment.cs (1)
92return new PolyLineSegment();
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (1)
84figure.Segments.Add(new PolyLineSegment(copy, IsStroked, IsSmoothJoin));
System\Windows\Media\PathGeometry.cs (1)
473PolyLineSegment polySeg = new PolyLineSegment(ptCollection, fStroked, fSmooth);
System\Windows\Media\PathStreamGeometryContext.cs (1)
388PolyLineSegment pSegment = new PolyLineSegment
System\Windows\Media\RectangleGeometry.cs (1)
351new PolyLineSegment(
PresentationFramework (4)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8643DefaultConstructor = delegate () { return new System.Windows.Media.PolyLineSegment(); }
System\Windows\Markup\KnownTypes.cs (1)
1466case KnownElements.PolyLineSegment: o = new System.Windows.Media.PolyLineSegment(); break;
System\Windows\Shapes\Polygon.cs (1)
135pathFigure.Segments.Add(new PolyLineSegment(array, true));
System\Windows\Shapes\Polyline.cs (1)
135pathFigure.Segments.Add(new PolyLineSegment(array, true));
22 references to PolyLineSegment
PresentationCore (7)
System\Windows\Media\Generated\PolyLineSegment.cs (5)
31public new PolyLineSegment Clone() 33return (PolyLineSegment)base.Clone(); 40public new PolyLineSegment CloneCurrentValue() 42return (PolyLineSegment)base.CloneCurrentValue(); 197Type typeofThis = typeof(PolyLineSegment);
System\Windows\Media\PathGeometry.cs (1)
473PolyLineSegment polySeg = new PolyLineSegment(ptCollection, fStroked, fSmooth);
System\Windows\Media\PathStreamGeometryContext.cs (1)
388PolyLineSegment pSegment = new PolyLineSegment
PresentationFramework (5)
System\Windows\Documents\FixedSOMPageConstructor.cs (2)
987else if (pathSegment is PolyLineSegment) 989PointCollection points = (pathSegment as PolyLineSegment).Points;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
575case 481: t = () => typeof(PolyLineSegment); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8640typeof(System.Windows.Media.PolyLineSegment),
System\Windows\Markup\KnownTypes.cs (1)
6029case KnownElements.PolyLineSegment: t = typeof(System.Windows.Media.PolyLineSegment); break;
ReachFramework (10)
AlphaFlattener\Utility.cs (5)
533PolyLineSegment pseg = null; 539pseg = segment as PolyLineSegment; 936else if (typ == typeof(PolyLineSegment)) 938PolyLineSegment seg = (PolyLineSegment)segment;
Serialization\VisualSerializer.cs (5)
1035PolyLineSegment pl = ps as PolyLineSegment; 1257if (ps is PolyLineSegment) 1259PolyLineSegment l = ps as PolyLineSegment;