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)
119
if (
_stylusPoints
!= null &&
_stylusPoints
.Count > 0 && stylusPoints.Count > 0)
125
StylusPoint lastStylusPoint =
_stylusPoints
[
_stylusPoints
.Count - 1];
148
if (
_stylusPoints
!= null &&
_stylusPoints
.Count > 0)
151
newStylusPoints.Insert(0,
_stylusPoints
[
_stylusPoints
.Count - 1]);
166
if (
_stylusPoints
== null)
170
return
_stylusPoints
.Count;
196
if (
_stylusPoints
== null || index < 0 || index >=
_stylusPoints
.Count || previousIndex < -1 || previousIndex >= index)
201
StylusPoint stylusPoint =
_stylusPoints
[index];
202
StylusPoint previousStylusPoint = (previousIndex == -1 ? new StylusPoint() :
_stylusPoints
[previousIndex]);
219
return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, index ==
_stylusPoints
.Count - 1 /*Is this the last node?*/);