ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Section Class / Controls Property
Example

In This Topic
    Controls Property (Section)
    In This Topic
    Gets a collection of all controls contained in the section.
    Syntax
    'Declaration
     
    Public ReadOnly Property Controls As ControlCollection
    public ControlCollection Controls {get;}

    Property Value

    A ControlCollection object representing all controls contained within the section.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.detail.Controls.Clear();
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.Detail1.Controls.Clear()
    End Sub
    See Also