Show the inspector
To show the inspector, set the IsInspectorPaneVisible property of the IEditorPage object to true.
public void ShowInformationPane(ICommandContext c, ICommandParams p)
{
IEditorPage editorPage = c.App.Window.EditorPage;
//Show the inspector
editorPage.IsInspectorPaneVisible = true;
}