Visual Basic (Declaration) | |
---|---|
Public Shadows Sub Clear() |
C# | |
---|---|
public new void Clear() |
To remove individual controls from the collection, use the Remove method.
C# | Copy Code |
---|---|
private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs) { this.Sections[0].Controls.Clear(); } |
Visual Basic | Copy Code |
---|---|
Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart Me.Sections(0).Controls.Clear() End Sub |