inputAriaDescribedBy property

  1. @Input()
set inputAriaDescribedBy (String elementID)

The ID of an element which should be assigned to the inner input element's aria-describedby attribute.

Implementation

@Input()
set inputAriaDescribedBy(String elementID) {
  _inputAriaDescribedBy = elementID;
  updateBottomPanelState();
}