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