2 overrides of TextLength
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1364
public override int
TextLength
winforms\Managed\System\WinForms\RichTextBox.cs (1)
1502
public override int
TextLength
{
10 references to TextLength
System.Web.Entity.Design (3)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (3)
139
_connectionStringTextBox.Select(0, _connectionStringTextBox.
TextLength
);
281
if (LocalAppContextSwitches.UseLegacyAccessibilityFeatures || _connectionStringTextBox.
TextLength
!= 0)
284
_connectionStringTextBox.Select(0, _connectionStringTextBox.
TextLength
);
System.Windows.Forms (7)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1370
return base.
TextLength
;
winforms\Managed\System\WinForms\TextBoxBase.cs (5)
1511
return IsHandleCreated ?
TextLength
+ 1 :
TextLength
;
1924
int textLen =
TextLength
;
1976
int textLen =
TextLength
;
2022
textLength = this.
TextLength
;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
472
get { return TextBox.
TextLength
; }