3 writes to uneditedFormattedValue
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (3)
3953this.uneditedFormattedValue = formattedValue; 9842this.uneditedFormattedValue = dataGridViewCell.GetFormattedValue(this.ptCurrentCell.Y, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting); 9927this.uneditedFormattedValue = initialFormattedValue;
6 references to uneditedFormattedValue
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (6)
3116((IDataGridViewEditingControl)this.editingControl).EditingControlFormattedValue = this.uneditedFormattedValue; 3124dataGridViewEditingCell.EditingCellFormattedValue = this.uneditedFormattedValue; 9849if ((currentFormattedValue == null && this.uneditedFormattedValue != null) || 9850(currentFormattedValue != null && this.uneditedFormattedValue == null) || 9851(currentFormattedValue != null && !this.uneditedFormattedValue.Equals(currentFormattedValue))) 9856dataGridViewEditingCell.EditingCellFormattedValue = this.uneditedFormattedValue;