Base:
property
State
System.Windows.Forms.AccessibleObject.State
3 overrides of State
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (1)
1811public override AccessibleStates State
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
1353public override AccessibleStates State
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
1292public override AccessibleStates State
9 references to State
System.Windows.Forms (9)
winforms\Managed\System\WinForms\DataGridViewCell.cs (3)
5535return (State & AccessibleStates.Focused) == AccessibleStates.Focused; // Announce the cell when focusing. 5543return (State & AccessibleStates.Focusable) == AccessibleStates.Focusable; 5547return (State & AccessibleStates.Offscreen) == AccessibleStates.Offscreen;
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (4)
1821return AccessibleStates.Checked | base.State; 1823return AccessibleStates.Indeterminate | base.State; 1831return AccessibleStates.Checked | base.State; 1834return base.State;
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
1360AccessibleStates state = base.State;
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
1299AccessibleStates state = base.State;