12 references to SymbolCount
PresentationFramework (12)
System\Windows\Controls\PasswordTextContainer.cs (5)
490
return this.
SymbolCount
;
499
return this.
SymbolCount
;
527
return new PasswordTextPointer(this, LogicalDirection.Forward, this.
SymbolCount
);
543
symbolCount = this.
SymbolCount
;
548
OnPasswordChange(0, this.
SymbolCount
);
System\Windows\Controls\PasswordTextNavigator.cs (7)
27
Debug.Assert(offset >= 0 && offset <= container.
SymbolCount
, "Bad PasswordTextPointer offset!");
138
(direction == LogicalDirection.Forward && _offset == _container.
SymbolCount
))
171
length = _container.
SymbolCount
- _offset;
195
finalCount = Math.Min(count, _container.
SymbolCount
- _offset);
434
if (this.Offset == this.Container.
SymbolCount
)
438
offset = this.Container.
SymbolCount
;
467
if (offset < 0 || offset > this.Container.
SymbolCount
)