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)
697protected override object? GetValue(int rowIndex)
17 references to GetValue
System.Windows.Forms (17)
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (1)
433return base.GetValue(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (10)
176return GetEditedFormattedValue(GetValue(RowIndex), RowIndex, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting); 686return GetValue(RowIndex); 1300formattedValue = GetEditedFormattedValue(GetValue(rowIndex), rowIndex, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting | DataGridViewDataErrorContexts.ClipboardContent); 1528return GetEditedFormattedValue(GetValue(rowIndex), rowIndex, ref dataGridViewCellStyle, context); 1578GetValue(rowIndex), 2459internal object? GetValueInternal(int rowIndex) => GetValue(rowIndex); 2735GetValue(rowIndex), 2750string? stringValue = GetValue(rowIndex) as string; 3645object? value = GetValue(rowIndex); 3884originalValue = 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)
707return base.GetValue(rowIndex);
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (1)
265object? value = GetValue(rowIndex);