18 writes to Value
PresentationUI (6)
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (6)
360Value = value, 382Value = newUser.Name, 668targetOwnerCell.Value = true; 700targetCell.Value = true; 743cell.Value = false; 811cell.Value = true;
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
10965dataGridViewCellNew.Value = dataGridViewCellNew.DefaultNewRowValue; 15448dataGridViewCellNew.Value = dataGridViewCellNew.DefaultNewRowValue;
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
248_owner.Value = _owner.ParseFormattedValue(
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (1)
414HeaderCell.Value = value;
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.cs (1)
110dataGridViewCell.Value = Value;
System\Windows\Forms\Controls\DataGridView\DataGridViewHeaderCell.cs (1)
204dataGridViewCell.Value = Value;
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.cs (1)
168Value = DefaultNewRowValue;
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (2)
215dataGridViewCell.Value = dataGridViewCell.DefaultNewRowValue; 682dataGridViewCell.Value = dataGridViewCell.DefaultNewRowValue;
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (1)
66dataGridViewCell.Value = Value;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (2)
53row.Cells[0].Value = "####"; 63row.Cells[0].Value = "####";
29 references to Value
PresentationUI (9)
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (9)
89bool allowed = (bool)row.Cells[col].Value; 271return (string)cell.Value; 648bool isEveryoneOwner = (bool)everyoneRow.Cells[ownerColumnIndex].Value; 649bool isTargetOwner = (bool)targetRow.Cells[ownerColumnIndex].Value; 689everyoneHasPermission = (bool)everyoneCell.Value; 741if ((bool)cell.Value) 771bool allowOwner = (bool)cell.Value; 803enableCell = !((bool)everyoneCell.Value); 1031if (!((bool)this.Value))
System.Windows.Forms (20)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
14076&& dataGridViewColumn.HeaderCell.Value is string stringValue
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (2)
209return string.IsNullOrEmpty(Value?.ToString()?.Trim(' ')) || Value is DBNull
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (2)
313|| string.IsNullOrEmpty(DataGridView.Rows[i].Cells[j].Value?.ToString())) 2383return GetDefaultToolTipText() ?? GetToolTipTextWithoutMnemonic(Value?.ToString());
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (2)
498if (string.IsNullOrEmpty(Value?.ToString()?.Trim(' ')) || Value is DBNull)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (1)
394if (HeaderCell.Value is string headerValue)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.cs (1)
110dataGridViewCell.Value = Value;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (2)
815return string.IsNullOrEmpty(Value?.ToString()?.Trim(' ')) || Value is DBNull
System\Windows\Forms\Controls\DataGridView\DataGridViewHeaderCell.cs (1)
204dataGridViewCell.Value = Value;
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.cs (2)
166if ((value && Value == ErrorBitmap) || (!value && Value == ErrorIcon))
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (2)
482return string.IsNullOrEmpty(Value?.ToString()?.Trim(' ')) || Value is DBNull
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (1)
66dataGridViewCell.Value = Value;
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (2)
318return string.IsNullOrEmpty(Value?.ToString()?.Trim(' ')) || Value is DBNull
System\Windows\Forms\Controls\DataGridView\DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs (1)
66object? value = Owner.Value;