8 instantiations of PasswordTextPointer
PresentationFramework (8)
System\Windows\Controls\PasswordTextContainer.cs (4)
214return new PasswordTextPointer(this, direction, offset); 514return new PasswordTextPointer(this, LogicalDirection.Backward, 0); 528return new PasswordTextPointer(this, LogicalDirection.Forward, this.SymbolCount); 670textPosition = new PasswordTextPointer(this, LogicalDirection.Forward, offset);
System\Windows\Controls\PasswordTextNavigator.cs (4)
313return new PasswordTextPointer(_container, _gravity, _offset); 325return new PasswordTextPointer(_container, _gravity, _offset + distance); 330return new PasswordTextPointer(_container, gravity, _offset); 352return new PasswordTextPointer(_container, gravity, _offset + distance);
19 references to PasswordTextPointer
PresentationFramework (19)
System\Windows\Controls\PasswordTextContainer.cs (16)
79offset = ((PasswordTextPointer)position).Offset; 119startOffset = ((PasswordTextPointer)startPosition).Offset; 120endOffset = ((PasswordTextPointer)endPosition).Offset; 285internal void AddPosition(PasswordTextPointer position) 305internal void RemovePosition(PasswordTextPointer searchPosition) 308PasswordTextPointer position; 662PasswordTextPointer textPosition; 695PasswordTextPointer position; 780PasswordTextPointer position; 806PasswordTextPointer position; 836PasswordTextPointer position; 871private PasswordTextPointer GetPointerAtIndex(int index) 875PasswordTextPointer position; 883if (strongReference != null && !(strongReference is PasswordTextPointer)) 889position = (PasswordTextPointer)strongReference; 899PasswordTextPointer position;
System\Windows\Controls\PasswordTextNavigator.cs (3)
83offset = ((PasswordTextPointer)position)._offset; 120return ((PasswordTextPointer)position)._offset - _offset; 494this.Offset = ((PasswordTextPointer)position).Offset;