8 instantiations of PasswordTextPointer
PresentationFramework (8)
System\Windows\Controls\PasswordTextContainer.cs (4)
213return new PasswordTextPointer(this, direction, offset); 513return new PasswordTextPointer(this, LogicalDirection.Backward, 0); 527return new PasswordTextPointer(this, LogicalDirection.Forward, this.SymbolCount); 669textPosition = new PasswordTextPointer(this, LogicalDirection.Forward, offset);
System\Windows\Controls\PasswordTextNavigator.cs (4)
312return new PasswordTextPointer(_container, _gravity, _offset); 324return new PasswordTextPointer(_container, _gravity, _offset + distance); 329return new PasswordTextPointer(_container, gravity, _offset); 351return new PasswordTextPointer(_container, gravity, _offset + distance);
19 references to PasswordTextPointer
PresentationFramework (19)
System\Windows\Controls\PasswordTextContainer.cs (16)
78offset = ((PasswordTextPointer)position).Offset; 118startOffset = ((PasswordTextPointer)startPosition).Offset; 119endOffset = ((PasswordTextPointer)endPosition).Offset; 284internal void AddPosition(PasswordTextPointer position) 304internal void RemovePosition(PasswordTextPointer searchPosition) 307PasswordTextPointer position; 661PasswordTextPointer textPosition; 694PasswordTextPointer position; 779PasswordTextPointer position; 805PasswordTextPointer position; 835PasswordTextPointer position; 870private PasswordTextPointer GetPointerAtIndex(int index) 874PasswordTextPointer position; 882if (strongReference != null && !(strongReference is PasswordTextPointer)) 888position = (PasswordTextPointer)strongReference; 898PasswordTextPointer position;
System\Windows\Controls\PasswordTextNavigator.cs (3)
82offset = ((PasswordTextPointer)position)._offset; 119return ((PasswordTextPointer)position)._offset - _offset; 493this.Offset = ((PasswordTextPointer)position).Offset;