3 overrides of TextLength
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
66public override int TextLength => (int)PInvokeCore.SendMessage(_owningChildEdit, PInvokeCore.WM_GETTEXTLENGTH);
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
103public override int TextLength
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
282public override int TextLength => Text.Length;
9 references to TextLength
System.Windows.Forms.Primitives (9)
System\Windows\Forms\Automation\UiaTextRange.cs (9)
221endIndex = _provider.TextLength; 228MoveTo(0, _provider.TextLength); 260MoveTo(0, _provider.TextLength); 358if (Start == _provider.TextLength 359|| (_provider.IsMultiline && End < _provider.TextLength 933int limit = _provider.TextLength; 985index = _provider.TextLength; 1022int limit = _provider.TextLength; 1184int limit = _provider.TextLength;