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