12 writes to _flags
System.Windows.Forms (12)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (12)
295
_flags
|= DisplayIndexHasChangedInternal;
299
_flags
= (byte)(_flags & ~DisplayIndexHasChangedInternal);
577
_flags
|= ColumnIsBrowsableInternal;
581
_flags
= (byte)(_flags & ~ColumnIsBrowsableInternal);
597
_flags
|= ColumnIsDataBound;
601
_flags
= (byte)(_flags & ~ColumnIsDataBound);
737
_flags
= (byte)(_flags & ~ProgrammaticSort);
738
_flags
|= AutomaticSort;
742
_flags
= (byte)(_flags & ~AutomaticSort);
743
_flags
|= ProgrammaticSort;
748
_flags
= (byte)(_flags & ~AutomaticSort);
749
_flags
= (byte)(_flags & ~ProgrammaticSort);
12 references to _flags
System.Windows.Forms (12)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (12)
290
get => (
_flags
& DisplayIndexHasChangedInternal) != 0;
299
_flags = (byte)(
_flags
& ~DisplayIndexHasChangedInternal);
572
get => (
_flags
& ColumnIsBrowsableInternal) != 0;
581
_flags = (byte)(
_flags
& ~ColumnIsBrowsableInternal);
592
get => (
_flags
& ColumnIsDataBound) != 0;
601
_flags = (byte)(
_flags
& ~ColumnIsDataBound);
707
if ((
_flags
& AutomaticSort) != 0x00)
711
else if ((
_flags
& ProgrammaticSort) != 0x00)
737
_flags = (byte)(
_flags
& ~ProgrammaticSort);
742
_flags = (byte)(
_flags
& ~AutomaticSort);
748
_flags = (byte)(
_flags
& ~AutomaticSort);
749
_flags = (byte)(
_flags
& ~ProgrammaticSort);