8 instantiations of PasswordTextPointer
PresentationFramework (8)
System\Windows\Controls\PasswordTextContainer.cs (4)
217return new PasswordTextPointer(this, direction, offset); 517return new PasswordTextPointer(this, LogicalDirection.Backward, 0); 531return new PasswordTextPointer(this, LogicalDirection.Forward, this.SymbolCount); 673textPosition = new PasswordTextPointer(this, LogicalDirection.Forward, offset);
System\Windows\Controls\PasswordTextNavigator.cs (4)
317return new PasswordTextPointer(_container, _gravity, _offset); 329return new PasswordTextPointer(_container, _gravity, _offset + distance); 334return new PasswordTextPointer(_container, gravity, _offset); 356return new PasswordTextPointer(_container, gravity, _offset + distance);
19 references to PasswordTextPointer
PresentationFramework (19)
System\Windows\Controls\PasswordTextContainer.cs (16)
82offset = ((PasswordTextPointer)position).Offset; 122startOffset = ((PasswordTextPointer)startPosition).Offset; 123endOffset = ((PasswordTextPointer)endPosition).Offset; 288internal void AddPosition(PasswordTextPointer position) 308internal void RemovePosition(PasswordTextPointer searchPosition) 311PasswordTextPointer position; 665PasswordTextPointer textPosition; 698PasswordTextPointer position; 783PasswordTextPointer position; 809PasswordTextPointer position; 839PasswordTextPointer position; 874private PasswordTextPointer GetPointerAtIndex(int index) 878PasswordTextPointer position; 886if (strongReference != null && !(strongReference is PasswordTextPointer)) 892position = (PasswordTextPointer)strongReference; 902PasswordTextPointer position;
System\Windows\Controls\PasswordTextNavigator.cs (3)
87offset = ((PasswordTextPointer)position)._offset; 124return ((PasswordTextPointer)position)._offset - _offset; 498this.Offset = ((PasswordTextPointer)position).Offset;