4 overrides of GetValue
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (1)
423
protected override object?
GetValue
(int rowIndex)
System\Windows\Forms\Controls\DataGridView\DataGridViewHeaderCell.cs (1)
422
protected override object?
GetValue
(int rowIndex)
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.cs (1)
539
protected override object?
GetValue
(int rowIndex)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (1)
667
protected override object?
GetValue
(int rowIndex)
20 references to GetValue
System.Windows.Forms (19)
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (1)
433
return base.
GetValue
(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (10)
184
return GetEditedFormattedValue(
GetValue
(RowIndex), RowIndex, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting);
694
return
GetValue
(RowIndex);
1311
formattedValue = GetEditedFormattedValue(
GetValue
(rowIndex), rowIndex, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting | DataGridViewDataErrorContexts.ClipboardContent);
1527
return GetEditedFormattedValue(
GetValue
(rowIndex), rowIndex, ref dataGridViewCellStyle, context);
1577
GetValue
(rowIndex),
2458
internal object? GetValueInternal(int rowIndex) =>
GetValue
(rowIndex);
2734
GetValue
(rowIndex),
2749
string? stringValue =
GetValue
(rowIndex) as string;
3644
object? value =
GetValue
(rowIndex);
3883
originalValue =
GetValue
(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (1)
475
object? value =
GetValue
(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (3)
737
object? value =
GetValue
(rowIndex);
844
object? value =
GetValue
(rowIndex);
1237
GetValue
(rowIndex),
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.cs (1)
541
object? valueBase = base.
GetValue
(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (1)
677
return base.
GetValue
(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (2)
265
object? value =
GetValue
(rowIndex);
357
object? value =
GetValue
(rowIndex);
System.Windows.Forms.Tests (1)
System\Windows\Forms\DataGridViewCellTests.cs (1)
6617
public new object GetValue(int rowIndex) => base.
GetValue
(rowIndex);