5 writes to Offset
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (2)
734position.Offset = offset; 768position.Offset += delta;
System\Windows\Controls\PasswordTextNavigator.cs (3)
444this.Offset = offset; 475this.Offset = offset; 494this.Offset = ((PasswordTextPointer)position).Offset;
18 references to Offset
PresentationFramework (18)
System\Windows\Controls\PasswordTextContainer.cs (13)
79offset = ((PasswordTextPointer)position).Offset; 119startOffset = ((PasswordTextPointer)startPosition).Offset; 120endOffset = ((PasswordTextPointer)endPosition).Offset; 296index = FindIndex(position.Offset, position.LogicalDirection); 730if (position.Offset > offset + -delta) 817if (position.Offset == offset && 823if (position.Offset > offset) 850Invariant.Assert(position.Offset >= 0 && position.Offset <= _password.Length); 851Invariant.Assert(lastOffset <= position.Offset); 855lastOffset == position.Offset) 862lastOffset = position.Offset; 910Debug.Write($"({position.DebugId}) {position.Offset}/{((position.LogicalDirection == LogicalDirection.Forward) ? "f " : "b ")}");
System\Windows\Controls\PasswordTextNavigator.cs (5)
427if (this.Offset == 0) 435if (this.Offset == this.Container.SymbolCount) 466offset = this.Offset + distance; 494this.Offset = ((PasswordTextPointer)position).Offset; 685return this.Offset;