サブエディタビューを取得する
サブエディタビューは、IEditorPage
オブジェクトのSubEditorView
プロパティを用いて取得できます。IEditorPage
オブジェクトは、IWorkspaceWindow.EditorPage
プロパティを用いて取得できます。
public void SomeCommand(ICommandContext c, ICommandParams p)
{
// サブエディタビューを取得します
IEditorView subEditorView = c.App.Window.EditorPage?.SubEditorView;
//...
}