パネル ボディの aria-label
属性を取得します。
最後の '-region' で初期値のパネル id になります。
次を取得:
const currentLabel = this.panel.body.label;
パネル ボディの aria-label
属性を取得します。
this.panel.body.label = 'my-custom-label';
<igx-expansion-panel-body [label]="'my-custom-label'"></igx-expansion-panel-body>
パネル ボディの aria-labelledby
属性を取得します。
初期値のパネル ヘッダー id になります。
次を取得:
const currentLabel = this.panel.body.labelledBy;
パネル ボディの aria-labelledby
属性を取得します。
this.panel.body.labelledBy = 'my-custom-id';
<igx-expansion-panel-body [labelledBy]="'my-custom-id'"></igx-expansion-panel-body>
パネル ボディの
role
属性を取得または設定します。 デフォルト値は 'region' です。 次を取得:次を設定: