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