12 writes to _flags
System.Windows.Forms (12)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (12)
293
_flags
|= DisplayIndexHasChangedInternal;
297
_flags
= (byte)(_flags & ~DisplayIndexHasChangedInternal);
575
_flags
|= ColumnIsBrowsableInternal;
579
_flags
= (byte)(_flags & ~ColumnIsBrowsableInternal);
595
_flags
|= ColumnIsDataBound;
599
_flags
= (byte)(_flags & ~ColumnIsDataBound);
735
_flags
= (byte)(_flags & ~ProgrammaticSort);
736
_flags
|= AutomaticSort;
740
_flags
= (byte)(_flags & ~AutomaticSort);
741
_flags
|= ProgrammaticSort;
746
_flags
= (byte)(_flags & ~AutomaticSort);
747
_flags
= (byte)(_flags & ~ProgrammaticSort);
12 references to _flags
System.Windows.Forms (12)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (12)
288
get => (
_flags
& DisplayIndexHasChangedInternal) != 0;
297
_flags = (byte)(
_flags
& ~DisplayIndexHasChangedInternal);
570
get => (
_flags
& ColumnIsBrowsableInternal) != 0;
579
_flags = (byte)(
_flags
& ~ColumnIsBrowsableInternal);
590
get => (
_flags
& ColumnIsDataBound) != 0;
599
_flags = (byte)(
_flags
& ~ColumnIsDataBound);
705
if ((
_flags
& AutomaticSort) != 0x00)
709
else if ((
_flags
& ProgrammaticSort) != 0x00)
735
_flags = (byte)(
_flags
& ~ProgrammaticSort);
740
_flags = (byte)(
_flags
& ~AutomaticSort);
746
_flags = (byte)(
_flags
& ~AutomaticSort);
747
_flags = (byte)(
_flags
& ~ProgrammaticSort);