2 overrides of MaxLength
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
881public override int MaxLength
winforms\Managed\System\WinForms\RichTextBox.cs (1)
625public override int MaxLength {
4 writes to MaxLength
System.Windows.Forms (4)
winforms\Managed\System\WinForms\DataGridViewTextBoxCell.cs (2)
122this.EditingTextBox.MaxLength = value; 542textBox.MaxLength = this.MaxInputLength;
winforms\Managed\System\WinForms\RichTextBox.cs (1)
630base.MaxLength = value;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
386set { TextBox.MaxLength = value; }
3 references to MaxLength
System.Windows.Forms (3)
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
883get{ return base.MaxLength; }
winforms\Managed\System\WinForms\RichTextBox.cs (1)
627return base.MaxLength;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
385get { return TextBox.MaxLength; }