9 instantiations of PolyLineSegment
PresentationCore (5)
Core\CSharp\System\Windows\Media\Generated\PolyLineSegment.cs (1)
126return new PolyLineSegment();
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (1)
108figure.Segments.Add(new PolyLineSegment(copy, IsStroked, IsSmoothJoin));
Core\CSharp\System\Windows\Media\PathGeometry.cs (1)
520PolyLineSegment polySeg = new PolyLineSegment(ptCollection, fStroked, fSmooth);
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (1)
405PolyLineSegment pSegment = new PolyLineSegment();
Core\CSharp\System\Windows\Media\RectangleGeometry.cs (1)
381new PolyLineSegment(
PresentationFramework (4)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7832bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.PolyLineSegment(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1473case KnownElements.PolyLineSegment: o = new System.Windows.Media.PolyLineSegment(); break;
src\Framework\System\Windows\Shapes\Polygon.cs (1)
145pathFigure.Segments.Add(new PolyLineSegment(array, true));
src\Framework\System\Windows\Shapes\Polyline.cs (1)
145pathFigure.Segments.Add(new PolyLineSegment(array, true));
12 references to PolyLineSegment
PresentationCore (7)
Core\CSharp\System\Windows\Media\Generated\PolyLineSegment.cs (5)
65public new PolyLineSegment Clone() 67return (PolyLineSegment)base.Clone(); 74public new PolyLineSegment CloneCurrentValue() 76return (PolyLineSegment)base.CloneCurrentValue(); 231Type typeofThis = typeof(PolyLineSegment);
Core\CSharp\System\Windows\Media\PathGeometry.cs (1)
520PolyLineSegment polySeg = new PolyLineSegment(ptCollection, fStroked, fSmooth);
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (1)
405PolyLineSegment pSegment = new PolyLineSegment();
PresentationFramework (5)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (2)
999else if (pathSegment is PolyLineSegment) 1001PointCollection points = (pathSegment as PolyLineSegment).Points;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
573case 481: t = () => typeof(PolyLineSegment); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7830typeof(System.Windows.Media.PolyLineSegment),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6025case KnownElements.PolyLineSegment: t = typeof(System.Windows.Media.PolyLineSegment); break;