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