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