12 writes to flags
System.Windows.Forms (12)
winforms\Managed\System\WinForms\DataGridViewColumn.cs (12)
419
this.
flags
|= (byte) DATAGRIDVIEWCOLUMN_displayIndexHasChangedInternal;
423
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_displayIndexHasChangedInternal);
769
this.
flags
|= (byte) DATAGRIDVIEWCOLUMN_isBrowsableInternal;
773
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_isBrowsableInternal);
801
this.
flags
|= (byte)DATAGRIDVIEWCOLUMN_isDataBound;
805
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_isDataBound);
981
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_programmaticSort);
982
this.
flags
|= (byte)DATAGRIDVIEWCOLUMN_automaticSort;
986
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_automaticSort);
987
this.
flags
|= (byte)DATAGRIDVIEWCOLUMN_programmaticSort;
992
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_automaticSort);
993
this.
flags
= (byte)(this.flags & ~DATAGRIDVIEWCOLUMN_programmaticSort);
12 references to flags
System.Windows.Forms (12)
winforms\Managed\System\WinForms\DataGridViewColumn.cs (12)
413
return (this.
flags
& DATAGRIDVIEWCOLUMN_displayIndexHasChangedInternal) != 0;
423
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_displayIndexHasChangedInternal);
763
return (this.
flags
& DATAGRIDVIEWCOLUMN_isBrowsableInternal) != 0;
773
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_isBrowsableInternal);
795
return (this.
flags
& DATAGRIDVIEWCOLUMN_isDataBound) != 0;
805
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_isDataBound);
952
if ((this.
flags
& DATAGRIDVIEWCOLUMN_automaticSort) != 0x00)
956
else if ((this.
flags
& DATAGRIDVIEWCOLUMN_programmaticSort) != 0x00)
981
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_programmaticSort);
986
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_automaticSort);
992
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_automaticSort);
993
this.flags = (byte)(this.
flags
& ~DATAGRIDVIEWCOLUMN_programmaticSort);