_XDocumentEventSink2_Event.OnSwitchView イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Microsoft InfoPath フォームのビューが正常に切り替えられた後に発生します。
public:
event Microsoft::Office::Interop::InfoPath::SemiTrust::_XDocumentEventSink2_OnSwitchViewEventHandler ^ OnSwitchView;
event Microsoft.Office.Interop.InfoPath.SemiTrust._XDocumentEventSink2_OnSwitchViewEventHandler OnSwitchView;
member this.OnSwitchView : Microsoft.Office.Interop.InfoPath.SemiTrust._XDocumentEventSink2_OnSwitchViewEventHandler
Event OnSwitchView As _XDocumentEventSink2_OnSwitchViewEventHandler
イベントの種類
例
次の例では、OnSwitchView イベント ハンドラーを使用して、ビューが変更されたときに表示されるビューの名前を表示しています。
[InfoPathEventHandler(EventType=InfoPathEventType.<span class="label">OnSwitchView</span>)]
public void OnSwitchView(DocEvent e)
{
thisXDocument.UI.Alert("Loading the view " + thisXDocument.View.Name);
}
次の例では、OnSwitchView イベント ハンドラーを使用して、ビューが変更されたときに表示されるビューの名前を表示しています。
[InfoPathEventHandler(EventType=InfoPathEventType.<span class="label">OnSwitchView</span>)]
public void OnSwitchView(DocEvent e)
{
thisXDocument.UI.Alert("Loading the view " + thisXDocument.View.Name);
}
注釈
このイベント ハンドラーでは、ユーザーが操作を取り消すことはできません。
注: OnSwitchView イベントは、フォームを最初に開いたときにも発生します。