3 writes to Points
PresentationCore (3)
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
54Points = new PointCollection(points); 65Points = new PointCollection(points);
System\Windows\Media\PathStreamGeometryContext.cs (1)
403pSegment.Points = _currentSegmentPoints;
13 references to Points
PresentationCore (5)
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (4)
78PointCollection points = Points; 108return (Points == null) || (Points.Count < 1); 122ctx.PolyLineTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\PolyLineSegment.cs (1)
44return (!IsEmpty()) ? "L" + Points.ConvertToString(format, provider) : "";
PresentationFramework (1)
System\Windows\Documents\FixedSOMPageConstructor.cs (1)
992PointCollection points = (pathSegment as PolyLineSegment).Points;
ReachFramework (7)
AlphaFlattener\Utility.cs (4)
554if ((pseg == null) || (pseg.Points == null) || (pseg.Points.Count != 3)) 572q = pseg.Points[i]; 957size = seg.Points.Count;
Serialization\VisualSerializer.cs (3)
1047WriteAttr("Points", pl.Points); 1048pc += pl.Points.Count; 1269pc += AppendPoints(rslt, l.Points, map);