インスペクタを表示する
インスペクタを表示するにはIEditorPage
オブ ジェクトのIsInspectorPaneVisible
プロパティをtrue
にします。
public void ShowInformationPane(ICommandContext c, ICommandParams p)
{
IEditorPage editorPage = c.App.Window.EditorPage;
// インスペクタを表示します
editorPage.IsInspectorPaneVisible = true;
}