15 writes to _flags
System.Windows.Forms (15)
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (15)
48
_flags
= DataGridViewCheckBoxCellFlags.ThreeState;
73
_flags
|= DataGridViewCheckBoxCellFlags.Checked;
74
_flags
&= ~DataGridViewCheckBoxCellFlags.Indeterminate;
78
_flags
|= DataGridViewCheckBoxCellFlags.Indeterminate;
79
_flags
&= ~DataGridViewCheckBoxCellFlags.Checked;
83
_flags
&= ~DataGridViewCheckBoxCellFlags.Checked;
84
_flags
&= ~DataGridViewCheckBoxCellFlags.Indeterminate;
91
_flags
|= DataGridViewCheckBoxCellFlags.Checked;
95
_flags
&= ~DataGridViewCheckBoxCellFlags.Checked;
98
_flags
&= ~DataGridViewCheckBoxCellFlags.Indeterminate;
114
_flags
|= DataGridViewCheckBoxCellFlags.ValueChanged;
118
_flags
&= ~DataGridViewCheckBoxCellFlags.ValueChanged;
319
_flags
|= DataGridViewCheckBoxCellFlags.ThreeState;
323
_flags
&= ~DataGridViewCheckBoxCellFlags.ThreeState;
776
_flags
|= DataGridViewCheckBoxCellFlags.ValueChanged;
10 references to _flags
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (10)
109
get =>
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.ValueChanged);
132
if (
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Checked))
141
else if (
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Indeterminate))
162
bool ret =
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Checked);
290
get =>
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.ThreeState);
338
(
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Indeterminate)))
344
(
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Checked)))
350
(
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Checked)))
1678
if (
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Checked))
1682
else if ((
_flags
.HasFlag(DataGridViewCheckBoxCellFlags.Indeterminate)))