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