17 references to GetErrorText
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (3)
146return GetErrorText(Index); 1435sharedRow.GetErrorText(rowIndex), 1476sharedRow.GetErrorText(rowIndex),
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (1)
290: OwningRow.GetErrorText(rowIndex);
System.Windows.Forms.Tests (13)
System\Windows\Forms\DataGridViewRowErrorTextNeededEventArgsTests.cs (1)
30Assert.Same(value, row.GetErrorText(0));
System\Windows\Forms\DataGridViewRowTests.cs (12)
4393Assert.Empty(row.GetErrorText(rowIndex)); 4397Assert.Equal("ErrorText", row.GetErrorText(rowIndex)); 4412Assert.Same("ErrorText1", row1.GetErrorText(0)); 4413Assert.Same("ErrorText1", row1.GetErrorText(0)); 4414Assert.Same("ErrorText2", row2.GetErrorText(1)); 4415Assert.Same("ErrorText2", row2.GetErrorText(1)); 4441Assert.Same("ErrorText2", row.GetErrorText(0)); 4446Assert.Same("ErrorText1", row.GetErrorText(0)); 4475Assert.Equal("ErrorText2", row.GetErrorText(0)); 4480Assert.Equal("ErrorText1", row.GetErrorText(0)); 4495Assert.Throws<ArgumentOutOfRangeException>("rowIndex", () => row.GetErrorText(rowIndex)); 4507Assert.Throws<InvalidOperationException>(() => row.GetErrorText(-1));