6 references to GetWindowTextLength
System.Private.Windows.Core (2)
Windows\Win32\PInvokeCore.GetWindowText.cs (1)
24int newTextLength = GetWindowTextLength(hWnd.Handle);
Windows\Win32\PInvokeCore.GetWindowTextLength.cs (1)
11int result = GetWindowTextLength(hWnd.Handle);
System.Windows.Forms (4)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (3)
394if (!IsHandleCreated || PInvokeCore.GetWindowTextLength(this) <= 0) 1968textLength = PInvokeCore.GetWindowTextLength(this); 3406int textLength = PInvokeCore.GetWindowTextLength(this);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1105=> IsHandleCreated ? PInvokeCore.GetWindowTextLength(this) : Text.Length;