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.C# | Copy Code |
---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.detail.Controls.Clear(); } |
Visual Basic | Copy Code |
---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.Detail1.Controls.Clear() End Sub |