8 overrides of IsReadOnly
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.AccessibleObject.cs (1)
25
internal override bool
IsReadOnly
=> this.TryGetOwnerAs(out DataGridView? owner) ? owner.ReadOnly : base.IsReadOnly;
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (1)
749
internal override bool
IsReadOnly
=> _owner?.ReadOnly ?? false;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
475
internal override bool
IsReadOnly
=> _owningDataGridViewRow?.ReadOnly ?? false;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.ProgressBarAccessibleObject.cs (1)
58
internal override bool
IsReadOnly
=> true;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
57
internal override bool
IsReadOnly
=> this.TryGetOwnerAs(out TextBoxBase? owner) && owner.ReadOnly;
System\Windows\Forms\ErrorProvider\ErrorProvider.ControlItem.ControlItemAccessibleObject.cs (1)
106
internal override bool
IsReadOnly
=> true;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.ErrorWindowAccessibleObject.cs (1)
100
internal override bool
IsReadOnly
=> true;
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarAccessibleObject.cs (1)
169
internal 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)
25
internal override bool IsReadOnly => this.TryGetOwnerAs(out DataGridView? owner) ? owner.ReadOnly : base.
IsReadOnly
;