Gets the preview outline view.
Namespace:
C1.Win.C1PreviewAssembly: 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:
Me.C1PrintPreviewControl1.PreviewOutlineView.ExpandTree = True |
this.c1PrintPreviewControl1.PreviewOutlineView.ExpandTree = true; |