30 writes to StateInternal
System.Windows.Forms (30)
winforms\Managed\System\WinForms\DataGridViewBand.cs (17)
225this.StateInternal = this.State | DataGridViewElementStates.Displayed; 229this.StateInternal = this.State & ~DataGridViewElementStates.Displayed; 299this.StateInternal = this.State | DataGridViewElementStates.Frozen; 303this.StateInternal = this.State & ~DataGridViewElementStates.Frozen; 594this.StateInternal = this.State | DataGridViewElementStates.ReadOnly; 598this.StateInternal = this.State & ~DataGridViewElementStates.ReadOnly; 612this.StateInternal = this.State | DataGridViewElementStates.ReadOnly; 616this.StateInternal = this.State & ~DataGridViewElementStates.ReadOnly; 650this.StateInternal = this.State & ~DataGridViewElementStates.ResizableSet; 654this.StateInternal = this.State | DataGridViewElementStates.ResizableSet; 659this.StateInternal = this.State | DataGridViewElementStates.Resizable; 664this.StateInternal = this.State & ~DataGridViewElementStates.Resizable; 727this.StateInternal = this.State | DataGridViewElementStates.Selected; 731this.StateInternal = this.State & ~DataGridViewElementStates.Selected; 879this.StateInternal = this.State | DataGridViewElementStates.Visible; 883this.StateInternal = this.State & ~DataGridViewElementStates.Visible; 910dataGridViewBand.StateInternal = this.State & ~(DataGridViewElementStates.Selected | DataGridViewElementStates.Displayed);
winforms\Managed\System\WinForms\DataGridViewCell.cs (6)
92this.StateInternal = DataGridViewElementStates.None; 636this.StateInternal = this.State | DataGridViewElementStates.ReadOnly; 640this.StateInternal = this.State & ~DataGridViewElementStates.ReadOnly; 746this.StateInternal = this.State | DataGridViewElementStates.Selected; 750this.StateInternal = this.State & ~DataGridViewElementStates.Selected; 1164dataGridViewCell.StateInternal = this.State & ~DataGridViewElementStates.Selected;
winforms\Managed\System\WinForms\DataGridViewCellCollection.cs (1)
190dataGridViewCell.StateInternal = oldDataGridViewCell.State;
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (6)
268dataGridViewRow.StateInternal = SharedRowState(0); 280newDataGridViewRow.StateInternal = SharedRowState(index); 360dataGridViewRow.StateInternal = dataGridViewRow.State | DataGridViewElementStates.Visible; 821dataGridViewRow.StateInternal = DataGridViewElementStates.None; 1839dataGridViewRow.StateInternal = DataGridViewElementStates.None; 2529SharedRow(rowIndex).StateInternal = SharedRowState(rowIndex);