8 instantiations of PasswordTextPointer
PresentationFramework (8)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (4)
223
return new
PasswordTextPointer
(this, direction, offset);
523
return new
PasswordTextPointer
(this, LogicalDirection.Backward, 0);
537
return new
PasswordTextPointer
(this, LogicalDirection.Forward, this.SymbolCount);
679
textPosition = new
PasswordTextPointer
(this, LogicalDirection.Forward, offset);
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (4)
319
return new
PasswordTextPointer
(_container, _gravity, _offset);
331
return new
PasswordTextPointer
(_container, _gravity, _offset + distance);
336
return new
PasswordTextPointer
(_container, gravity, _offset);
358
return new
PasswordTextPointer
(_container, gravity, _offset + distance);
18 references to PasswordTextPointer
PresentationFramework (18)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (15)
88
offset = ((
PasswordTextPointer
)position).Offset;
128
startOffset = ((
PasswordTextPointer
)startPosition).Offset;
129
endOffset = ((
PasswordTextPointer
)endPosition).Offset;
294
internal void AddPosition(
PasswordTextPointer
position)
314
internal void RemovePosition(
PasswordTextPointer
searchPosition)
317
PasswordTextPointer
position;
671
PasswordTextPointer
textPosition;
704
PasswordTextPointer
position;
789
PasswordTextPointer
position;
815
PasswordTextPointer
position;
845
PasswordTextPointer
position;
880
private
PasswordTextPointer
GetPointerAtIndex(int index)
884
PasswordTextPointer
position;
892
if (strongReference != null && !(strongReference is
PasswordTextPointer
))
898
position = (
PasswordTextPointer
)strongReference;
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (3)
89
offset = ((
PasswordTextPointer
)position)._offset;
126
return ((
PasswordTextPointer
)position)._offset - _offset;
500
this.Offset = ((
PasswordTextPointer
)position).Offset;