8 overrides of IsReadOnly
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.AccessibleObject.cs (1)
25internal override bool IsReadOnly => this.TryGetOwnerAs(out DataGridView? owner) ? owner.ReadOnly : base.IsReadOnly;
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
749internal override bool IsReadOnly => _owner?.ReadOnly ?? false;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
475internal override bool IsReadOnly => _owningDataGridViewRow?.ReadOnly ?? false;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.ProgressBarAccessibleObject.cs (1)
58internal override bool IsReadOnly => true;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
57internal override bool IsReadOnly => this.TryGetOwnerAs(out TextBoxBase? owner) && owner.ReadOnly;
System\Windows\Forms\ErrorProvider\ErrorProvider.ControlItem.ControlItemAccessibleObject.cs (1)
106internal override bool IsReadOnly => true;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.ErrorWindowAccessibleObject.cs (1)
100internal override bool IsReadOnly => true;
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarAccessibleObject.cs (1)
169internal override bool IsReadOnly => false;
3 references to IsReadOnly
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\AccessibleObject.cs (2)
1392*pRetVal = IsReadOnly; 3076*pRetVal = IsReadOnly;
System\Windows\Forms\Controls\DataGridView\DataGridView.AccessibleObject.cs (1)
25internal override bool IsReadOnly => this.TryGetOwnerAs(out DataGridView? owner) ? owner.ReadOnly : base.IsReadOnly;