Activate the information pane
The information pane is displayed by setting the IsInformationPaneVisible
property of the IWorkspaceWindow
object to true. Then, the specified tab is activated with the ActiveInfoWindow
property.
The value of ActiveInfoWindow
is the following:
- Error: "Error"
- Search results: "SearchResult"
- Output: "Output"
public void InfoPaneActivate(ICommandContext c, ICommandParams p)
{
//Display the information pane
c.App.Window.IsInformationPaneVisible = true;
//Activate the specified tab
c.App.Window.ActiveInfoWindow = "Output";
}