Base:
property
CellTemplate
System.Windows.Forms.DataGridViewColumn.CellTemplate
3 writes to CellTemplate
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (3)
37
_column.
CellTemplate
= cell;
47
Action action = () => _column.
CellTemplate
= cell;
102
_column.
CellTemplate
= null;
4 references to CellTemplate
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxColumn.cs (1)
83
private DataGridViewTextBoxCell? TextBoxCellTemplate => (DataGridViewTextBoxCell?)
CellTemplate
;
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewTextBoxColumnTests.cs (3)
27
_column.
CellTemplate
.Should().NotBeNull();
28
_column.
CellTemplate
.Should().BeOfType<DataGridViewTextBoxCell>();
39
_column.
CellTemplate
.Should().Be(cell);