4 references to GetWindowTextLength
System.Windows.Forms (4)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (3)
394if (!IsHandleCreated || PInvokeCore.GetWindowTextLength(this) <= 0) 1959textLength = PInvokeCore.GetWindowTextLength(this); 3387int textLength = PInvokeCore.GetWindowTextLength(this);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1099=> IsHandleCreated ? PInvokeCore.GetWindowTextLength(this) : Text.Length;