5 writes to Offset
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (2)
743position.Offset = offset; 777position.Offset += delta;
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (3)
450this.Offset = offset; 481this.Offset = offset; 500this.Offset = ((PasswordTextPointer)position).Offset;
17 references to Offset
PresentationFramework (17)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (12)
88offset = ((PasswordTextPointer)position).Offset; 128startOffset = ((PasswordTextPointer)startPosition).Offset; 129endOffset = ((PasswordTextPointer)endPosition).Offset; 305index = FindIndex(position.Offset, position.LogicalDirection); 739if (position.Offset > offset + -delta) 826if (position.Offset == offset && 832if (position.Offset > offset) 859Invariant.Assert(position.Offset >= 0 && position.Offset <= _password.Length); 860Invariant.Assert(lastOffset <= position.Offset); 864lastOffset == position.Offset) 871lastOffset = position.Offset;
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (5)
433if (this.Offset == 0) 441if (this.Offset == this.Container.SymbolCount) 472offset = this.Offset + distance; 500this.Offset = ((PasswordTextPointer)position).Offset; 691return this.Offset;