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