Gets the aria-label
attribute of the panel body
Defaults to the panel id with '-region' in the end;
Get
const currentLabel = this.panel.body.label;
Sets the aria-label
attribute of the panel body
this.panel.body.label = 'my-custom-label';
<igx-expansion-panel-body [label]="'my-custom-label'"></igx-expansion-panel-body>
Gets the aria-labelledby
attribute of the panel body
Defaults to the panel header id;
Get
const currentLabel = this.panel.body.labelledBy;
Sets the aria-labelledby
attribute of the panel body
this.panel.body.labelledBy = 'my-custom-id';
<igx-expansion-panel-body [labelledBy]="'my-custom-id'"></igx-expansion-panel-body>
Gets/sets the
role
attribute of the panel body Default is 'region'; GetSet