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)
126
if (
_stylusPoints
!= null &&
_stylusPoints
.Count > 0 && stylusPoints.Count > 0)
132
StylusPoint lastStylusPoint =
_stylusPoints
[
_stylusPoints
.Count - 1];
155
if (
_stylusPoints
!= null &&
_stylusPoints
.Count > 0)
158
newStylusPoints.Insert(0,
_stylusPoints
[
_stylusPoints
.Count - 1]);
173
if (
_stylusPoints
== null)
177
return
_stylusPoints
.Count;
203
if (
_stylusPoints
== null || index < 0 || index >=
_stylusPoints
.Count || previousIndex < -1 || previousIndex >= index)
208
StylusPoint stylusPoint =
_stylusPoints
[index];
209
StylusPoint previousStylusPoint = (previousIndex == -1 ? new StylusPoint() :
_stylusPoints
[previousIndex]);
226
return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, index ==
_stylusPoints
.Count - 1 /*Is this the last node?*/);