ControlBuilder.Init Method
.NET Framework 2.0
Initializes the ControlBuilder for use after it is instantiated. This method is called by the ASP.NET page framework.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual void Init ( TemplateParser^ parser, ControlBuilder^ parentBuilder, Type^ type, String^ tagName, String^ id, IDictionary^ attribs )
public void Init ( TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs )
public function Init ( parser : TemplateParser, parentBuilder : ControlBuilder, type : Type, tagName : String, id : String, attribs : IDictionary )
Not applicable.
Parameters
- parser
The TemplateParser object responsible for parsing the control.
- parentBuilder
The ControlBuilder object responsible for building the parent control.
- type
The Type assigned to the control that the builder will create.
- tagName
The name of the tag to be built. This allows the builder to support multiple tag types.
- id
The ID attribute assigned to the control.
- attribs
The IDictionary object that holds all the specified tag attributes.
Community Additions
ADD
Show: