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