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)
5082e.Value = value2; 5120e.Value = value2; 5161e.Value = value2;
System\Windows\Forms\DataGridViewCellValueEventArgsTests.cs (1)
45Value = value
System\Windows\Forms\DataGridViewHeaderCellTests.cs (3)
3616e.Value = value2; 3654e.Value = value2; 3695e.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)
13154return dataGridViewCellValueEventArgs.Value;
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataGridViewCellTests.cs (3)
5081Assert.Null(e.Value); 5119Assert.Null(e.Value); 5160Assert.Null(e.Value);
System\Windows\Forms\DataGridViewCellValueEventArgsTests.cs (2)
19Assert.Null(e.Value); 47Assert.Equal(value, e.Value);
System\Windows\Forms\DataGridViewHeaderCellTests.cs (3)
3615Assert.Null(e.Value); 3653Assert.Null(e.Value); 3694Assert.Null(e.Value);
WinFormsControlsTest (1)
DataGridViewInVirtualModeTest.cs (1)
95object newValue = e.Value;