4 overrides of GetValue
System.Windows.Forms (4)
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (1)
457protected override object GetValue(int rowIndex)
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (1)
519protected override object GetValue(int rowIndex)
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (1)
603protected override object GetValue(int rowIndex)
winforms\Managed\System\WinForms\DataGridViewLinkCell.cs (1)
763protected override object GetValue(int rowIndex)
17 references to GetValue
System.Windows.Forms (17)
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (1)
467return base.GetValue(rowIndex);
winforms\Managed\System\WinForms\DataGridViewCell.cs (10)
259return GetEditedFormattedValue(GetValue(this.RowIndex), this.RowIndex, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting); 907return GetValue(this.RowIndex); 1577formattedValue = GetEditedFormattedValue(GetValue(rowIndex), rowIndex, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting | DataGridViewDataErrorContexts.ClipboardContent); 1824return GetEditedFormattedValue(GetValue(rowIndex), rowIndex, ref dataGridViewCellStyle, context); 1878return GetFormattedValue(GetValue(rowIndex), rowIndex, ref cellStyle, null, null, context); 2714return GetValue(rowIndex); 3127string editedFormattedValue = GetEditedFormattedValue(GetValue(rowIndex), 3142string stringValue = GetValue(rowIndex) as string; 4398object formattedValue, value = GetValue(rowIndex); 4616originalValue = GetValue(rowIndex);
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (3)
969object value = GetValue(rowIndex); 1077object value = GetValue(rowIndex); 1500this.EditingComboBox.Text = (string) GetFormattedValue(GetValue(rowIndex), rowIndex, ref dataGridViewCellStyle, null, null, DataGridViewDataErrorContexts.Formatting);
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (1)
605object valueBase = base.GetValue(rowIndex);
winforms\Managed\System\WinForms\DataGridViewLinkCell.cs (1)
773return base.GetValue(rowIndex);
winforms\Managed\System\WinForms\DataGridViewTextBoxCell.cs (1)
320object value = GetValue(rowIndex);