5 writes to Offset
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (2)
737position.Offset = offset; 771position.Offset += delta;
System\Windows\Controls\PasswordTextNavigator.cs (3)
448this.Offset = offset; 479this.Offset = offset; 498this.Offset = ((PasswordTextPointer)position).Offset;
18 references to Offset
PresentationFramework (18)
System\Windows\Controls\PasswordTextContainer.cs (13)
82offset = ((PasswordTextPointer)position).Offset; 122startOffset = ((PasswordTextPointer)startPosition).Offset; 123endOffset = ((PasswordTextPointer)endPosition).Offset; 299index = FindIndex(position.Offset, position.LogicalDirection); 733if (position.Offset > offset + -delta) 820if (position.Offset == offset && 826if (position.Offset > offset) 853Invariant.Assert(position.Offset >= 0 && position.Offset <= _password.Length); 854Invariant.Assert(lastOffset <= position.Offset); 858lastOffset == position.Offset) 865lastOffset = position.Offset; 913Debug.Write($"({position.DebugId}) {position.Offset}/{((position.LogicalDirection == LogicalDirection.Forward) ? "f " : "b ")}");
System\Windows\Controls\PasswordTextNavigator.cs (5)
431if (this.Offset == 0) 439if (this.Offset == this.Container.SymbolCount) 470offset = this.Offset + distance; 498this.Offset = ((PasswordTextPointer)position).Offset; 689return this.Offset;