Gets or sets a value indicating whether the navigation panel should be visible in the preview.

Namespace:  C1.Win.C1Preview
Assembly:  C1.Win.C1Report.2 (in C1.Win.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute(true)]
[BrowsableAttribute(true)]
public bool NavigationPanelVisible { get; set; }
Visual Basic
<DefaultValueAttribute(True)> _
<BrowsableAttribute(True)> _
Public Property NavigationPanelVisible As Boolean
	Get
	Set

Remarks

The default value for this property is True.

Examples

The following code hides the Navigation panel in the C1PrintPreviewControl:

Copy CodeVisual Basic
Me.C1PrintPreviewControl1.NavigationPanelVisible = False
Copy CodeC#
this.c1PrintPreviewControl1.NavigationPanelVisible = false;

See Also