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;
3 references to IsReadOnly
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Automation\UiaTextRange.cs (1)
905
private bool GetReadOnly() => _provider.
IsReadOnly
;
System.Windows.Forms.Primitives.Tests (2)
System\Windows\Forms\Automation\UiaTextRangeTests.cs (2)
534
providerMock.Setup(m => m.
IsReadOnly
).Returns(false);
1154
providerMock.Setup(m => m.
IsReadOnly
).Returns(readOnly);