15 writes to flags
System.Windows.Forms (15)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (15)
83this.flags = DATAGRIDVIEWCOMBOBOXCELL_autoComplete; 131this.flags |= (byte)DATAGRIDVIEWCOMBOBOXCELL_autoComplete; 135this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_autoComplete); 621this.flags |= (byte)DATAGRIDVIEWCOMBOBOXCELL_sorted; 625this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_sorted); 900this.flags |= (byte)DATAGRIDVIEWCOMBOBOXCELL_createItemsFromDataSource; 904this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_createItemsFromDataSource); 929this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp); 949this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_dropDownHookedUp); 1028this.flags |= (byte)DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp; 1577this.flags |= (byte)DATAGRIDVIEWCOMBOBOXCELL_dropDownHookedUp; 1871this.flags |= (byte)DATAGRIDVIEWCOMBOBOXCELL_ignoreNextMouseClick; 1900this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_ignoreNextMouseClick); 1916this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_ignoreNextMouseClick); 2728this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp);
18 references to flags
System.Windows.Forms (18)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (18)
122return ((this.flags & DATAGRIDVIEWCOMBOBOXCELL_autoComplete) != 0x00); 135this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_autoComplete); 604return ((this.flags & DATAGRIDVIEWCOMBOBOXCELL_sorted) != 0x00); 625this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_sorted); 894return ((this.flags & DATAGRIDVIEWCOMBOBOXCELL_createItemsFromDataSource) != 0x00); 904this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_createItemsFromDataSource); 919Debug.Assert((this.flags & DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp) != 0x00); 929this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp); 946(this.flags & DATAGRIDVIEWCOMBOBOXCELL_dropDownHookedUp) != 0x00) 949this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_dropDownHookedUp); 1025if ((this.flags & DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp) == 0x00) 1306if (dataManager != null || (this.flags & DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp) == 0x00) 1574if ((this.flags & DATAGRIDVIEWCOMBOBOXCELL_dropDownHookedUp) == 0x00) 1900this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_ignoreNextMouseClick); 1914if ((this.flags & DATAGRIDVIEWCOMBOBOXCELL_ignoreNextMouseClick) != 0x00) 1916this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_ignoreNextMouseClick); 2722if (dsInit != null && (this.flags & DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp) != 0x00) 2728this.flags = (byte)(this.flags & ~DATAGRIDVIEWCOMBOBOXCELL_dataSourceInitializedHookedUp);