2 overrides of TextLength
System.Windows.Forms (2)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
1412public override unsafe int TextLength
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1196public override int TextLength
8 references to TextLength
System.Windows.Forms (8)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1202return base.TextLength;
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
1008TextLength == 0;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (5)
1635? TextLength + 1 1636: TextLength; 2145int textLen = TextLength; 2207int textLength = TextLength; 2250: TextLength;
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.cs (1)
347get { return TextBox.TextLength; }