ActiveReports 8
GetGroups Method
See Also  Example
GrapeCity.ActiveReports.Design.Win.v8 Assembly > GrapeCity.ActiveReports.Design.Toolbox Namespace > Toolbox Class : GetGroups Method

Glossary Item Box

Returns a read-only wrapper for the Groups collection.

Syntax

Visual Basic (Declaration) 
Public Function GetGroups() As System.Collections.ObjectModel.ReadOnlyCollection(Of Group)
C# 
public System.Collections.ObjectModel.ReadOnlyCollection<Group> GetGroups()

Example

Visual BasicCopy Code
' change the name of the first group of tools in the default End User Report Designer Toolbox
arToolbox.GetGroups()(0).Text = "ARTools"
C#Copy Code
// change the name of the first group of tools in the default End User Report Designer Toolbox
arToolbox.GetGroups()[0].Text = "ARTools";

Requirements

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

See Also