6 references to GetWindowTextLength
System.Windows.Forms (6)
winforms\Managed\System\WinForms\Control.cs (1)
4538
int textLen = SafeNativeMethods.
GetWindowTextLength
(new HandleRef(window, Handle));
winforms\Managed\System\WinForms\FileDialog.cs (1)
210
int textLen = SafeNativeMethods.
GetWindowTextLength
(new HandleRef(this, dialogHWnd));
winforms\Managed\System\WinForms\RichTextBox.cs (3)
526
if (SafeNativeMethods.
GetWindowTextLength
(new HandleRef(this, Handle)) > 0) {
2113
int textLen = SafeNativeMethods.
GetWindowTextLength
(new HandleRef(this, Handle));
3622
int textLength = SafeNativeMethods.
GetWindowTextLength
(new HandleRef(this, Handle));
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
1258
return SafeNativeMethods.
GetWindowTextLength
(new HandleRef(this, Handle));