14 writes to Value
System.Windows.Forms (10)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
5022this.owner.Value = owner.ParseFormattedValue(formattedValue,
winforms\Managed\System\WinForms\DataGridViewColumn.cs (1)
587this.HeaderCell.Value = value;
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
128dataGridViewCell.Value = this.Value;
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (1)
302dataGridViewCell.Value = this.Value;
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (1)
241this.Value = this.DefaultNewRowValue;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
11111dataGridViewCellNew.Value = dataGridViewCellNew.DefaultNewRowValue; 15933dataGridViewCellNew.Value = dataGridViewCellNew.DefaultNewRowValue;
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (2)
363dataGridViewCell.Value = dataGridViewCell.DefaultNewRowValue; 829dataGridViewCell.Value = dataGridViewCell.DefaultNewRowValue;
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
171dataGridViewCell.Value = this.Value;
System.WorkflowServices (4)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (4)
416editedRow.Cells[this.typeColumn.Index].Value = typeof(string); 417editedRow.Cells[this.directionColumn.Index].Value = SR2.GetString(SR2.ParameterDirectionIn); 435currentCell.Value = typeChooserCellItem.ChosenType; 660cell.Value = typeBrowserDialog.SelectedType;
17 references to Value
System.Windows.Forms (9)
winforms\Managed\System\WinForms\DataGridViewColumn.cs (1)
566string headerValue = this.HeaderCell.Value as string;
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
128dataGridViewCell.Value = this.Value;
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (1)
302dataGridViewCell.Value = this.Value;
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (2)
239if ((value && this.Value == ErrorBitmap) || (!value && this.Value == ErrorIcon))
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
14540if (dataGridViewColumn.HasHeaderCell && dataGridViewColumn.HeaderCell.Value is string && 14541String.Compare((string)dataGridViewColumn.HeaderCell.Value, dataGridViewColumn.Name, false, CultureInfo.InvariantCulture) == 0)
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
171dataGridViewCell.Value = this.Value;
winforms\Managed\System\WinForms\DataGridViewTopLeftHeaderCell.cs (1)
507object value = this.Owner.Value;
System.WorkflowServices (8)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (8)
225if (combo.DroppedDown && combo.Text.Equals(SR2.GetString(SR2.BrowseType)) && !typeof(TypeChooserCellItem).Equals(currentCell.Value)) 372if (typeof(void).ToString().Equals(e.FormattedValue) && !(this.parametersGrid.Rows[e.RowIndex].Cells[this.nameColumn.Index].Value.Equals(SR2.GetString(SR2.ReturnValueString)))) 413if (!this.parametersGrid.Rows[this.parametersGrid.RowCount - 1].Cells[this.nameColumn.Index].Value.Equals(this.ParameterTemplateRowName)) 424if (typeof(TypeChooserCellItem).Equals(currentCell.Value)) 704string name = row.Cells[this.nameColumn.Index].Value as string; 705object typeCell = row.Cells[this.typeColumn.Index].Value; 706string direction = row.Cells[this.directionColumn.Index].Value as string; 767if (parameterName.Equals(row.Cells[this.nameColumn.Index].Value.ToString()))