Gets the preview outline view.

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

Syntax

C#
[BrowsableAttribute(true)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
public C1PreviewOutlineView PreviewOutlineView { get; }
Visual Basic
<BrowsableAttribute(True)> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)> _
Public ReadOnly Property PreviewOutlineView As C1PreviewOutlineView
	Get

Examples

The following code sets the default tree view in the Outline tab to expanded:

Copy CodeVisual Basic
Me.C1PrintPreviewControl1.PreviewOutlineView.ExpandTree = True
Copy CodeC#
this.c1PrintPreviewControl1.PreviewOutlineView.ExpandTree = true;

See Also