ActiveReports Developer 7
GetGroups Method
See Also  Example
GrapeCity.ActiveReports.Design.Win.v7 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";

See Also