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)
1614? TextLength + 1 1615: TextLength; 2122int textLen = TextLength; 2184int textLength = TextLength; 2227: TextLength;
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.cs (1)
347get { return TextBox.TextLength; }