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