ActiveReports6 Assembly > DataDynamics.ActiveReports Namespace > SectionCollection Class : InsertGroupHF Method |
Overload | Description |
---|---|
InsertGroupHF() | Inserts a group header and a matching group footer into the SectionCollection with the default names GroupHeader1,GroupFooter1; where 1 is an order number. |
InsertGroupHF(String,String) | Inserts a group header and a matching group footer into the SectionCollection with the names, specified in the corresponding grHeaderName and grFooterName parameters. |
DataDynamics.ActiveReports.ActiveReport rpt = New DataDynamics.ActiveReports.ActiveReport(); rpt.Sections.Add(DataDynamics.ActiveReports.SectionType.Detail,"Detail"); rpt.Sections.InsertGroupHF(); rpt.Sections[0].BackColor = System.Drawing.Color.DarkOrchid; rpt.Sections[1].BackColor = System.Drawing.Color.Orchid; rpt.Sections[2].BackColor = System.Drawing.Color.DarkOrchid; rpt.Run(); this.arv.Document = rpt.Document;
Dim rpt As New DataDynamics.ActiveReports.ActiveReport rpt.Sections.Add(DataDynamics.ActiveReports.SectionType.Detail, "Detail") rpt.Sections.InsertGroupHF() rpt.Sections(0).BackColor = System.Drawing.Color.DarkOrchid rpt.Sections(1).BackColor = System.Drawing.Color.Orchid rpt.Sections(2).BackColor = System.Drawing.Color.DarkOrchid rpt.Run() Me.Viewer1.Document = rpt.Document
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2