[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Viewer.Win.Viewer.Sidebar

Sidebar Property

Sidebar

Gets the sidebar's public API, providing access to its functionality and panels.

Declaration
public Sidebar Sidebar { get; }
Property Value
Type Description
Sidebar

A Sidebar instance that represents the sidebar in the viewer.

Examples
// Assuming 'viewer' is your Viewer control instance
private void ShowSidebarButton_Click(object sender, EventArgs e)
{
	viewer.Sidebar.Visible = true;
}
private void HideSidebarButton_Click(object sender, EventArgs e)
{
    viewer.Sidebar.Visible = false;
}