ComponentOne Reports for WinForms Designer Edition: ComponentOne Reports for WinForms > Printing and Previewing Task-Based Help > Hiding the Navigation Panel

Hiding the Navigation Panel

To hide the navigational panel, set the NavigationPanelVisible property to False. This can be set at either in the designer or in code.

In the Smart Designer

1.   Open the Main Menu floating toolbar.

2.   Select the Layout button to open the Layout dialog box.

3.   Uncheck Navigation panel to set the NavigationPanelVisible property to False.

 

In the Properties Window

1.   Select the C1PrintPreviewControl and navigate to the Properties window.

2.   Set the NavigationPanelVisible property to False.

 

In Code

Add the following code to the Form_Load event:

      Visual Basic

Me.C1PrintPreviewControl1.NavigationPanelVisible = False

      C#

this.c1PrintPreviewControl1.NavigationPanelVisible = false;

 What You've Accomplished

The navigation panel will not be visible:

 


Send comments about this topic to ComponentOne.
Copyright © ComponentOne LLC. All rights reserved.