如何在报表查看器中自定义“内容列表” - Active Report 6.0

时间:2013-12-31 14:00:07

标签: c# reporting

我正在开发一个Windows应用程序并且我有一个报告,我想自定义活动报告查看器没有缩略图选项卡的目录

所以请建议我这样做。

感谢。

2 个答案:

答案 0 :(得分:0)

无法使用缩略图自定义TOC。 自定义应用于两个选项卡或不应用于任何选项卡。要设置报告的TOC属性,请参阅以下文档链接: http://helpcentral.componentone.com/NetHelp/ActiveReports6/ActiveReports.Viewer6~DataDynamics.ActiveReports.Viewer.TableOfContentsObject.html

此致 Mohita

答案 1 :(得分:0)

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

var controls = viewer1.Controls.Cast<Control>();
foreach (Control control in controls)

    {
      // 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);
                        }
                    }