2 writes to originalTextValue
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
4449originalTextValue = s; 4791originalTextValue = text;
9 references to originalTextValue
System.Windows.Forms (9)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (9)
523if (((text == null || text.Length == 0) && (originalTextValue == null || originalTextValue.Length == 0)) || 524(text != null && originalTextValue != null && text.Equals(originalTextValue))) { 2849Edit.Text = originalTextValue; 2856Edit.Text = originalTextValue; 2862needReset = originalTextValue != curTextValue && !(string.IsNullOrEmpty(originalTextValue) && string.IsNullOrEmpty(curTextValue)); 2867success = CommitText(originalTextValue);