3 writes to Points
PresentationCore (3)
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
39Points = new PointCollection(points); 50Points = new PointCollection(points);
System\Windows\Media\PathStreamGeometryContext.cs (1)
386pSegment.Points = _currentSegmentPoints;
13 references to Points
PresentationCore (5)
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (4)
63PointCollection points = Points; 93return (Points == null) || (Points.Count < 1); 107ctx.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)
987PointCollection 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)
1039WriteAttr("Points", pl.Points); 1040pc += pl.Points.Count; 1261pc += AppendPoints(rslt, l.Points, map);