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