3 writes to Points
PresentationCore (3)
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
49Points = new PointCollection(points); 60Points = new PointCollection(points);
System\Windows\Media\PathStreamGeometryContext.cs (1)
390Points = _currentSegmentPoints
13 references to Points
PresentationCore (5)
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (4)
73PointCollection points = Points; 103return (Points == null) || (Points.Count < 1); 117ctx.PolyLineTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\PolyLineSegment.cs (1)
25return (!IsEmpty()) ? "L" + Points.ConvertToString(format, provider) : "";
PresentationFramework (1)
System\Windows\Documents\FixedSOMPageConstructor.cs (1)
989PointCollection points = (pathSegment as PolyLineSegment).Points;
ReachFramework (7)
AlphaFlattener\Utility.cs (4)
541if ((pseg == null) || (pseg.Points == null) || (pseg.Points.Count != 3)) 559q = pseg.Points[i]; 940size = seg.Points.Count;
Serialization\VisualSerializer.cs (3)
1040WriteAttr("Points", pl.Points); 1041pc += pl.Points.Count; 1262pc += AppendPoints(rslt, l.Points, map);