Base:
property
Text
System.Windows.Forms.Control.Text
3 overrides of Text
System.Windows.Forms (3)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1308public override string Text
winforms\Managed\System\WinForms\RichTextBox.cs (1)
1440public override string Text {
winforms\Managed\System\WinForms\TextBox.cs (1)
464public override string Text {
7 writes to Text
System.Windows.Forms (7)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1323base.Text = value;
winforms\Managed\System\WinForms\TextBox.cs (1)
469base.Text = value;
winforms\Managed\System\WinForms\TextBoxBase.cs (5)
730Text = text.ToString(); 733Text = ""; 1322Text = null; 1325Text = value; 1446Text = null;
13 references to Text
System.Windows.Forms (13)
winforms\Managed\System\WinForms\MaskedTextBox.cs (2)
1314return base.Text; 2559textValue = base.Text;
winforms\Managed\System\WinForms\RichTextBox.cs (2)
1443return base.Text; 1456return base.Text;
winforms\Managed\System\WinForms\TextBox.cs (1)
466return base.Text;
winforms\Managed\System\WinForms\TextBoxBase.cs (8)
684string text = Text; 987Size textSize = TextRenderer.MeasureText(this.Text, this.Font, proposedConstraints, format); 1112return Text.Substring(selStart, selLength); 1261return Text.Length; 1745string t = this.Text; 1763string t = this.Text; 1792if (index < 0 || index >= Text.Length) 2162string txt = Text;