1 write to _stylusPoints
PresentationCore (1)
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
103_stylusPoints = stylusPoints;
15 references to _stylusPoints
PresentationCore (15)
MS\Internal\Ink\StrokeNodeEnumerator.cs (15)
119if (_stylusPoints != null && _stylusPoints.Count > 0 && stylusPoints.Count > 0) 125StylusPoint lastStylusPoint = _stylusPoints[_stylusPoints.Count - 1]; 148if (_stylusPoints != null && _stylusPoints.Count > 0) 151newStylusPoints.Insert(0, _stylusPoints[_stylusPoints.Count - 1]); 166if (_stylusPoints == null) 170return _stylusPoints.Count; 196if (_stylusPoints == null || index < 0 || index >= _stylusPoints.Count || previousIndex < -1 || previousIndex >= index) 201StylusPoint stylusPoint = _stylusPoints[index]; 202StylusPoint previousStylusPoint = (previousIndex == -1 ? new StylusPoint() : _stylusPoints[previousIndex]); 219return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, index == _stylusPoints.Count - 1 /*Is this the last node?*/);