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