5 writes to Scope
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
1982Scope = DataGridViewCellStyleScopes.None
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (4)
36Scope = DataGridViewCellStyleScopes.None; 44Scope = DataGridViewCellStyleScopes.None; 370Scope |= scope; 512Scope &= ~scope;
7 references to Scope
System.Windows.Forms (7)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (4)
12862if ((dataGridViewCellStyle.Scope & DataGridViewCellStyleScopes.DataGridView) != 0 && _dataGridViewState1[State1_AmbientFont]) 12867if ((dataGridViewCellStyle.Scope & DataGridViewCellStyleScopes.ColumnHeaders) != 0 && _dataGridViewState1[State1_AmbientColumnHeadersFont]) 12872if ((dataGridViewCellStyle.Scope & DataGridViewCellStyleScopes.RowHeaders) != 0 && _dataGridViewState1[State1_AmbientRowHeadersFont]) 12880if ((dataGridViewCellStyle.Scope & DataGridViewCellStyleScopes.DataGridView) != 0 && _dataGridViewState1[State1_AmbientForeColor])
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (2)
504if (_dataGridView is not null && Scope != DataGridViewCellStyleScopes.None) 513if (Scope == DataGridViewCellStyleScopes.None)
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyleContentChangedEventArgs.cs (1)
16public DataGridViewCellStyleScopes CellStyleScope => CellStyle.Scope;