3 writes to Points
PresentationCore (3)
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
60
Points
= new PointCollection(points);
74
Points
= new PointCollection(points);
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (1)
406
pSegment.
Points
= _currentSegmentPoints;
6 references to Points
PresentationCore (5)
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (4)
87
PointCollection points =
Points
;
117
return (
Points
== null) || (
Points
.Count < 1);
131
ctx.PolyLineTo(
Points
, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\PolyLineSegment.cs (1)
47
return (!IsEmpty()) ? "L" +
Points
.ConvertToString(format, provider) : "";
PresentationFramework (1)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (1)
1001
PointCollection points = (pathSegment as PolyLineSegment).
Points
;