1 write to _stylusPoints
PresentationCore (1)
Core\CSharp\MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
124_stylusPoints = stylusPoints;
15 references to _stylusPoints
PresentationCore (15)
Core\CSharp\MS\Internal\Ink\StrokeNodeEnumerator.cs (15)
146if (_stylusPoints != null && _stylusPoints.Count > 0 && stylusPoints.Count > 0) 152StylusPoint lastStylusPoint = _stylusPoints[_stylusPoints.Count - 1]; 178if (_stylusPoints != null && _stylusPoints.Count > 0) 181newStylusPoints.Insert(0, _stylusPoints[_stylusPoints.Count - 1]); 196if (_stylusPoints == null) 200return _stylusPoints.Count; 226if (_stylusPoints == null || index < 0 || index >= _stylusPoints.Count || previousIndex < -1 || previousIndex >= index) 231StylusPoint stylusPoint = _stylusPoints[index]; 232StylusPoint previousStylusPoint = (previousIndex == -1 ? new StylusPoint() : _stylusPoints[previousIndex]); 249return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, index == _stylusPoints.Count - 1 /*Is this the last node?*/);