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