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