5 writes to Offset
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (2)
733position.Offset = offset; 767position.Offset += delta;
System\Windows\Controls\PasswordTextNavigator.cs (3)
443this.Offset = offset; 474this.Offset = offset; 493this.Offset = ((PasswordTextPointer)position).Offset;
18 references to Offset
PresentationFramework (18)
System\Windows\Controls\PasswordTextContainer.cs (13)
78offset = ((PasswordTextPointer)position).Offset; 118startOffset = ((PasswordTextPointer)startPosition).Offset; 119endOffset = ((PasswordTextPointer)endPosition).Offset; 295index = FindIndex(position.Offset, position.LogicalDirection); 729if (position.Offset > offset + -delta) 816if (position.Offset == offset && 822if (position.Offset > offset) 849Invariant.Assert(position.Offset >= 0 && position.Offset <= _password.Length); 850Invariant.Assert(lastOffset <= position.Offset); 854lastOffset == position.Offset) 861lastOffset = position.Offset; 909Debug.Write($"({position.DebugId}) {position.Offset}/{((position.LogicalDirection == LogicalDirection.Forward) ? "f " : "b ")}");
System\Windows\Controls\PasswordTextNavigator.cs (5)
426if (this.Offset == 0) 434if (this.Offset == this.Container.SymbolCount) 465offset = this.Offset + distance; 493this.Offset = ((PasswordTextPointer)position).Offset; 684return this.Offset;