3 overrides of IsReadOnly
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
52
public override bool
IsReadOnly
=> false;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
64
public override bool
IsReadOnly
=> false;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
218
public override bool
IsReadOnly
=> Owner is not null && Owner.ReadOnly;
1 reference to IsReadOnly
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Automation\UiaTextRange.cs (1)
905
private bool GetReadOnly() => _provider.
IsReadOnly
;