12 references to SymbolCount
PresentationFramework (12)
System\Windows\Controls\PasswordTextContainer.cs (5)
491return this.SymbolCount; 500return this.SymbolCount; 528return new PasswordTextPointer(this, LogicalDirection.Forward, this.SymbolCount); 544symbolCount = this.SymbolCount; 549OnPasswordChange(0, this.SymbolCount);
System\Windows\Controls\PasswordTextNavigator.cs (7)
28Debug.Assert(offset >= 0 && offset <= container.SymbolCount, "Bad PasswordTextPointer offset!"); 139(direction == LogicalDirection.Forward && _offset == _container.SymbolCount)) 172length = _container.SymbolCount - _offset; 196finalCount = Math.Min(count, _container.SymbolCount - _offset); 435if (this.Offset == this.Container.SymbolCount) 439offset = this.Container.SymbolCount; 468if (offset < 0 || offset > this.Container.SymbolCount)