1 write to _stylusPoints
PresentationCore (1)
MS\Internal\Ink\StrokeNodeEnumerator.cs (1)
102
_stylusPoints
= stylusPoints;
15 references to _stylusPoints
PresentationCore (15)
MS\Internal\Ink\StrokeNodeEnumerator.cs (15)
118
if (
_stylusPoints
!= null &&
_stylusPoints
.Count > 0 && stylusPoints.Count > 0)
124
StylusPoint lastStylusPoint =
_stylusPoints
[
_stylusPoints
.Count - 1];
147
if (
_stylusPoints
!= null &&
_stylusPoints
.Count > 0)
150
newStylusPoints.Insert(0,
_stylusPoints
[
_stylusPoints
.Count - 1]);
165
if (
_stylusPoints
== null)
169
return
_stylusPoints
.Count;
195
if (
_stylusPoints
== null || index < 0 || index >=
_stylusPoints
.Count || previousIndex < -1 || previousIndex >= index)
200
StylusPoint stylusPoint =
_stylusPoints
[index];
201
StylusPoint previousStylusPoint = (previousIndex == -1 ? new StylusPoint() :
_stylusPoints
[previousIndex]);
218
return new StrokeNode(_operations, previousIndex + 1, nodeData, lastNodeData, isLastNode: index ==
_stylusPoints
.Count - 1);