Base:
property
Text
System.Windows.Forms.Control.Text
3 overrides of Text
System.Windows.Forms (3)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
1306
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)
418
public override string
Text
6 writes to Text
System.Windows.Forms (6)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1156
base.
Text
= value;
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
423
base.
Text
= value;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (4)
618
Text
= string.Join(Environment.NewLine, value);
622
Text
= string.Empty;
1144
Text
= value.Length == 0 ? null : value;
1267
Text
= null;
18 references to Text
System.Windows.Forms (18)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1312
return base.
Text
;
1325
: 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)
420
get => base.
Text
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (11)
22
[DefaultBindingProperty(nameof(
Text
))]
213
int boundaryStart = ClientUtils.GetWordBoundaryStart(
Text
, SelectionStart);
572
string text =
Text
;
851
Size textSize = TextRenderer.MeasureText(
Text
, Font, proposedConstraints, format);
981
return
Text
.Substring(selStart, selLength);
1099
=> IsHandleCreated ? PInvokeCore.GetWindowTextLength(this) :
Text
.Length;
1547
using var textVariant = PasswordProtect ? (VARIANT)string.Empty : (VARIANT)
Text
;
1557
string t =
Text
;
1576
string t =
Text
;
1604
if (index < 0 || index >=
Text
.Length)
1973
string txt =
Text
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (2)
272
: Owner.
Text
279
: ((MaskedTextBox)Owner).PasswordChar, Owner.
Text
.Length)