9 instantiations of PolyLineSegment
PresentationCore (5)
System\Windows\Media\Generated\PolyLineSegment.cs (1)
120
return new
PolyLineSegment
();
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (1)
99
figure.Segments.Add(new
PolyLineSegment
(copy, IsStroked, IsSmoothJoin));
System\Windows\Media\PathGeometry.cs (1)
496
PolyLineSegment polySeg = new
PolyLineSegment
(ptCollection, fStroked, fSmooth);
System\Windows\Media\PathStreamGeometryContext.cs (1)
402
PolyLineSegment pSegment = new
PolyLineSegment
();
System\Windows\Media\RectangleGeometry.cs (1)
366
new
PolyLineSegment
(
PresentationFramework (4)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7836
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.
PolyLineSegment
(); };
System\Windows\Markup\KnownTypes.cs (1)
1472
case KnownElements.PolyLineSegment: o = new System.Windows.Media.
PolyLineSegment
(); break;
System\Windows\Shapes\Polygon.cs (1)
142
pathFigure.Segments.Add(new
PolyLineSegment
(array, true));
System\Windows\Shapes\Polyline.cs (1)
142
pathFigure.Segments.Add(new
PolyLineSegment
(array, true));
22 references to PolyLineSegment
PresentationCore (7)
System\Windows\Media\Generated\PolyLineSegment.cs (5)
59
public new
PolyLineSegment
Clone()
61
return (
PolyLineSegment
)base.Clone();
68
public new
PolyLineSegment
CloneCurrentValue()
70
return (
PolyLineSegment
)base.CloneCurrentValue();
225
Type typeofThis = typeof(
PolyLineSegment
);
System\Windows\Media\PathGeometry.cs (1)
496
PolyLineSegment
polySeg = new PolyLineSegment(ptCollection, fStroked, fSmooth);
System\Windows\Media\PathStreamGeometryContext.cs (1)
402
PolyLineSegment
pSegment = new PolyLineSegment();
PresentationFramework (5)
System\Windows\Documents\FixedSOMPageConstructor.cs (2)
990
else if (pathSegment is
PolyLineSegment
)
992
PointCollection points = (pathSegment as
PolyLineSegment
).Points;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
577
case 481: t = () => typeof(
PolyLineSegment
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7834
typeof(System.Windows.Media.
PolyLineSegment
),
System\Windows\Markup\KnownTypes.cs (1)
6035
case KnownElements.PolyLineSegment: t = typeof(System.Windows.Media.
PolyLineSegment
); break;
ReachFramework (10)
AlphaFlattener\Utility.cs (5)
544
PolyLineSegment
pseg = null;
550
pseg = segment as
PolyLineSegment
;
947
else if (typ == typeof(
PolyLineSegment
))
949
PolyLineSegment
seg = (
PolyLineSegment
)segment;
Serialization\VisualSerializer.cs (5)
1042
PolyLineSegment
pl = ps as
PolyLineSegment
;
1264
if (ps is
PolyLineSegment
)
1266
PolyLineSegment
l = ps as
PolyLineSegment
;