11 references to s_propCellValue
System.Windows.Forms (11)
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (5)
284internal bool HasValue => Properties.ContainsKey(s_propCellValue); 2432return Properties.GetValueOrDefault<object>(s_propCellValue); 2443return Properties.GetValueOrDefault<object>(s_propCellValue); 3895Properties.AddOrRemoveValue(s_propCellValue, value); 3932Properties.AddOrRemoveValue(s_propCellValue, value);
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.cs (3)
58internal bool ContainsLocalValue => Properties.ContainsKey(s_propCellValue); 708return Properties.TryGetValueOrNull(s_propCellValue, out object? value) ? value : OwningColumn?.Name; 1193Properties.AddValue(s_propCellValue, value);
System\Windows\Forms\Controls\DataGridView\DataGridViewHeaderCell.cs (1)
425return Properties.GetValueOrDefault<object>(s_propCellValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (2)
570return Properties.GetValueOrDefault<object?>(s_propCellValue); 1060Properties.AddOrRemoveValue(s_propCellValue, value);