如何隐藏Active Reports 6.0中的缩略图视图选项

时间:2013-12-31 11:07:11

标签: c# activereports

我正在使用Windows应用程序。在这个应用程序中,我必须显示一些报告。为了显示报告,我使用的是Active Reports viewer 6.0。

现在,我的问题是关于Active报表查看器中的内容区域表。我想隐藏Active Report viewer内容区域下方的缩略图视图选项和目录选项卡。

我附上了一张图片,以便更好地了解我的问题:

enter image description here

2 个答案:

答案 0 :(得分:1)

要在Active Report查看器中自定义tableOfContent,首先我们必须从查看器获取所有控件,然后获取Tab控件并使用TabPage。

var controls = viewer1.Controls.Cast(); foreach(控制中的控制控制)

{
  // Check fot TableOfContents Control
  if (control.Name == "TableOfContents")
 {
                        // Getting the TabControl.
                        var contColletion = control.Controls;
                        Control tabCollection = contColletion[0];
                        TabControl tabControl = (TabControl)tabCollection;
                        tabControl.Appearance = TabAppearance.Normal;
                        // Remove the Thumbnail Tab from Control.
                        tabControl.TabPages.RemoveAt(1);
                    }
                }

答案 1 :(得分:0)

单击查看器工具栏上的toc按钮(打印按钮左侧)。你也可以通过api做到这一点。

http://helpcentral.componentone.com/NetHelp/ActiveReports6/ActiveReports.Viewer6~DataDynamics.ActiveReports.Viewer.Viewer~TableOfContents.html