3 writes to MaxInputLength
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (1)
114dataGridViewCell.MaxInputLength = MaxInputLength;
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxColumn.cs (2)
57TextBoxCellTemplate.MaxInputLength = value; 70dataGridViewCell.MaxInputLength = value;
5 references to MaxInputLength
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (2)
114dataGridViewCell.MaxInputLength = MaxInputLength; 515textBox.MaxLength = MaxInputLength;
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxColumn.cs (1)
48return TextBoxCellTemplate.MaxInputLength;
System.Windows.Forms.Tests (2)
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (2)
70((DataGridViewTextBoxCell)row.Cells[0]).MaxInputLength.Should().Be(100); 84((DataGridViewTextBoxCell)row.Cells[0]).MaxInputLength.Should().Be(32767);