ariaReadOnly property

String? get ariaReadOnly
inherited

The ariaReadOnly property of the Element interface reflects the value of the aria-readonly attribute, which indicates that the element is not editable, but is otherwise operable.

Note: Where possible use an HTML input element with type="text" or a textarea as these have built in semantics and do not require ARIA attributes.

Implementation

external String? get ariaReadOnly;
set ariaReadOnly (String? value)
inherited

Implementation

external set ariaReadOnly(String? value);