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