3 overrides of IsReadOnly
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
52public override bool IsReadOnly => false;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
64public override bool IsReadOnly => false;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
218public 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)
905private bool GetReadOnly() => _provider.IsReadOnly;
System.Windows.Forms.Primitives.Tests (2)
System\Windows\Forms\Automation\UiaTextRangeTests.cs (2)
534providerMock.Setup(m => m.IsReadOnly).Returns(false); 1154providerMock.Setup(m => m.IsReadOnly).Returns(readOnly);