12 references to SymbolCount
PresentationFramework (12)
System\Windows\Controls\PasswordTextContainer.cs (5)
494
return this.
SymbolCount
;
503
return this.
SymbolCount
;
531
return new PasswordTextPointer(this, LogicalDirection.Forward, this.
SymbolCount
);
547
symbolCount = this.
SymbolCount
;
552
OnPasswordChange(0, this.
SymbolCount
);
System\Windows\Controls\PasswordTextNavigator.cs (7)
32
Debug.Assert(offset >= 0 && offset <= container.
SymbolCount
, "Bad PasswordTextPointer offset!");
143
(direction == LogicalDirection.Forward && _offset == _container.
SymbolCount
))
176
length = _container.
SymbolCount
- _offset;
200
finalCount = Math.Min(count, _container.
SymbolCount
- _offset);
439
if (this.Offset == this.Container.
SymbolCount
)
443
offset = this.Container.
SymbolCount
;
472
if (offset < 0 || offset > this.Container.
SymbolCount
)