ActiveReports 8
Controls Property
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Section Class : Controls Property

Glossary Item Box

Gets a collection of all controls contained in the section.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Controls As ControlCollection
C# 
public ControlCollection Controls {get;}

Property Value

A ControlCollection object representing all controls contained within the section.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.detail.Controls.Clear();
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Detail1.Controls.Clear()
End Sub

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