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