GetFocusedViewport

導入

v5.0

詳細

選択中のビュー ペイン(A、B、C、または D)をフォーカスがあるビュー マネージャに戻します(選択中のビュー ペインはグレーの枠で表示されます)。

スクリプト構文

oReturn = GetFocusedViewport();

戻り値

ビュー ペイン(A、B、C、または D)を文字列で戻します。

1. VBScript の例

' Get the view pane with the focus

LogMessage "The view pane with the focus is " & GetFocusedViewport

2. VBScript の例

' Get the type of view embedded in the focused viewport

set oVM = Application.Desktop.ActiveLayout.Views.Find("View Manager")

set oView = oVM.Views(GetFocusedViewport)

LogMessage oView.FullName & ", " & oView.Type

関連項目

SetFocusedViewport GetViewportUnderMouse