12 references to SymbolCount
PresentationFramework (12)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (5)
500
return this.
SymbolCount
;
509
return this.
SymbolCount
;
537
return new PasswordTextPointer(this, LogicalDirection.Forward, this.
SymbolCount
);
553
symbolCount = this.
SymbolCount
;
558
OnPasswordChange(0, this.
SymbolCount
);
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (7)
34
Debug.Assert(offset >= 0 && offset <= container.
SymbolCount
, "Bad PasswordTextPointer offset!");
145
(direction == LogicalDirection.Forward && _offset == _container.
SymbolCount
))
178
length = _container.
SymbolCount
- _offset;
202
finalCount = Math.Min(count, _container.
SymbolCount
- _offset);
441
if (this.Offset == this.Container.
SymbolCount
)
445
offset = this.Container.
SymbolCount
;
474
if (offset < 0 || offset > this.Container.
SymbolCount
)