12 writes to Value
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewCellValueEventArgs.cs (1)
35Value = value;
System.Windows.Forms.Tests (7)
System\Windows\Forms\DataGridViewCellTests.cs (3)
5081e.Value = value2; 5119e.Value = value2; 5160e.Value = value2;
System\Windows\Forms\DataGridViewCellValueEventArgsTests.cs (1)
43Value = value
System\Windows\Forms\DataGridViewHeaderCellTests.cs (3)
3617e.Value = value2; 3655e.Value = value2; 3696e.Value = value2;
WinFormsControlsTest (4)
DataGridViewInVirtualModeTest.cs (4)
69e.Value = customer.Name; 72e.Value = customer.Age; 75e.Value = customer.HasAJob; 78e.Value = customer.Gender;
10 references to Value
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
13562return dataGridViewCellValueEventArgs.Value;
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataGridViewCellTests.cs (3)
5080Assert.Null(e.Value); 5118Assert.Null(e.Value); 5159Assert.Null(e.Value);
System\Windows\Forms\DataGridViewCellValueEventArgsTests.cs (2)
17Assert.Null(e.Value); 45Assert.Equal(value, e.Value);
System\Windows\Forms\DataGridViewHeaderCellTests.cs (3)
3616Assert.Null(e.Value); 3654Assert.Null(e.Value); 3695Assert.Null(e.Value);
WinFormsControlsTest (1)
DataGridViewInVirtualModeTest.cs (1)
95object newValue = e.Value;