12 references to SymbolCount
PresentationFramework (12)
System\Windows\Controls\PasswordTextContainer.cs (5)
491
return this.
SymbolCount
;
500
return this.
SymbolCount
;
528
return new PasswordTextPointer(this, LogicalDirection.Forward, this.
SymbolCount
);
544
symbolCount = this.
SymbolCount
;
549
OnPasswordChange(0, this.
SymbolCount
);
System\Windows\Controls\PasswordTextNavigator.cs (7)
28
Debug.Assert(offset >= 0 && offset <= container.
SymbolCount
, "Bad PasswordTextPointer offset!");
139
(direction == LogicalDirection.Forward && _offset == _container.
SymbolCount
))
172
length = _container.
SymbolCount
- _offset;
196
finalCount = Math.Min(count, _container.
SymbolCount
- _offset);
435
if (this.Offset == this.Container.
SymbolCount
)
439
offset = this.Container.
SymbolCount
;
468
if (offset < 0 || offset > this.Container.
SymbolCount
)