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