Base:
property
Text
System.Windows.Forms.Control.Text
3 overrides of Text
System.Windows.Forms (3)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
1342
public override string
Text
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1141
public override string
Text
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
460
public override string
Text
5 writes to Text
System.Windows.Forms (5)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1156
base.
Text
= value;
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
465
base.
Text
= value;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (3)
646
Text
= value is not null && value.Length > 0
1418
Text
= value.Length == 0 ? null : value;
1547
Text
= null;
18 references to Text
System.Windows.Forms (18)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1348
return base.
Text
;
1361
: base.
Text
;
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (2)
1147
return base.
Text
;
2322
textValue = base.
Text
;
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
462
get => base.
Text
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (11)
23
[DefaultBindingProperty(nameof(
Text
))]
225
int boundaryStart = ClientUtils.GetWordBoundaryStart(
Text
, SelectionStart);
600
string text =
Text
;
1116
Size textSize = TextRenderer.MeasureText(
Text
, Font, proposedConstraints, format);
1246
return
Text
.Substring(selStart, selLength);
1364
=> IsHandleCreated ? PInvokeCore.GetWindowTextLength(this) :
Text
.Length;
1979
using var textVariant = PasswordProtect ? (VARIANT)string.Empty : (VARIANT)
Text
;
1989
string t =
Text
;
2008
string t =
Text
;
2037
if (index < 0 || index >=
Text
.Length)
2381
string txt =
Text
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (2)
272
: Owner.
Text
279
: ((MaskedTextBox)Owner).PasswordChar, Owner.
Text
.Length)