アニメーションを開始する前に発生されます。
onAnimation(event: OverlayAnimationEventArgs){
const onAnimation = event;
}
コンポーネントが閉じて、すべてのアニメーションが完了した後に発生します。
onClosed(event: OverlayEventArgs){
const onClosed = event;
}
コンポーネントが閉じられる前に発生されます。
onClosing(event: OverlayCancelableEventArgs){
const onClosing = event;
}
コンポーネントが開いて、すべてのアニメーションが完了した後に発生します。
onOpened(event: OverlayEventArgs){
const onOpened = event;
}
コンポーネントが開かれる前に発生されます。
onOpening(event: OverlayCancelableEventArgs){
const onOpening = event;
}
Id を生成します。show(id, settings?) メソッドを呼び出して、id を提供します。
位置、スクロール/閉じる動作としてオーバーレイの設定を表示します。
Id of the created overlay. Valid until onClosed is emitted.
Id を生成します。show(id, settings?) メソッドを呼び出して、id を提供します。
オーバーレイに 表示されるコンポーネント タイプ。
位置、スクロール/閉じる動作としてオーバーレイの設定を表示します。
コンポーネントのファクトリを解決できる Injector および ComponentFactoryResolver を含むオブジェクトへのオプションの参照。
Id of the created overlay. Valid until onClosed is emitted.
パラメーターとして提供された ID を持つコンポーネントを非表示します。
this.overlay.hide(id);
すべてのコンポーネントおよびオーバーレイを非表示します。
this.overlay.hideAll();
パラメーターとして提供された ID を持つコンポーネントを位置変更します。
this.overlay.reposition(id);
提供されたコンポーネントを表示します。
Id to show overlay for
位置、スクロール/閉じる動作としてオーバーレイの設定を表示します。
提供されたコンポーネントを表示します。
オーバーレイに ElementRef またはコンポーネントのタイプを表示します。
位置、スクロール/閉じる動作としてオーバーレイの設定を表示します。
Id of the created overlay. Valid until onClosed is emitted.
this.overlay.show(element, settings);
ヘルプ オーバーレイ サービスは、ページのその他すべての要素のオーバーレイ div にコンポーネントを表示できます。