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