ControlBuilder.AppendSubBuilder Method (ControlBuilder)

 

Adds builders to the ControlBuilder object for any child controls that belong to the container control.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

Public Overridable Sub AppendSubBuilder (
	subBuilder As ControlBuilder
)

Parameters

subBuilder
Type: System.Web.UI.ControlBuilder

The ControlBuilder object assigned to the child control.

The following example overrides the AppendSubBuilder method to throw an Exception if the control this control builder is applied to tries to include controls in its instance of ControlCollection class.

' Override the AppendSubBuilder method to throw an
' exception if the class it is applied to attempts
' to include child controls. 
Public Overrides Sub AppendSubBuilder(ByVal subBuilder As ControlBuilder)
    Throw New Exception( _
       "A custom label control cannot contain other objects.")
End Sub

.NET Framework
Available since 1.1
Return to top
Show: