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