1 write to _stylusPoints
PresentationCore (1)
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
110_stylusPoints = stylusPoints;
15 references to _stylusPoints
PresentationCore (15)
MS\Internal\Ink\StrokeNodeEnumerator.cs (15)
126if (_stylusPoints != null && _stylusPoints.Count > 0 && stylusPoints.Count > 0) 132StylusPoint lastStylusPoint = _stylusPoints[_stylusPoints.Count - 1]; 155if (_stylusPoints != null && _stylusPoints.Count > 0) 158newStylusPoints.Insert(0, _stylusPoints[_stylusPoints.Count - 1]); 173if (_stylusPoints == null) 177return _stylusPoints.Count; 203if (_stylusPoints == null || index < 0 || index >= _stylusPoints.Count || previousIndex < -1 || previousIndex >= index) 208StylusPoint stylusPoint = _stylusPoints[index]; 209StylusPoint previousStylusPoint = (previousIndex == -1 ? new StylusPoint() : _stylusPoints[previousIndex]); 226return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, index == _stylusPoints.Count - 1 /*Is this the last node?*/);