ActiveReports3 Request technical support
Controls Property
See Also  Example


Gets a collection of all controls contained in the section.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Controls As ControlCollection
Visual Basic (Usage)Copy Code
Dim instance As Section
Dim value As ControlCollection
 
value = instance.Controls
C# 
public ControlCollection Controls {get;}

Return 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

See Also