Label.AddAttributesToRender(HtmlTextWriter) Method

Definition

Adds the HTML attributes and styles of a Label control to render to the specified output stream.

protected:
 override void AddAttributesToRender(System::Web::UI::HtmlTextWriter ^ writer);
protected override void AddAttributesToRender (System.Web.UI.HtmlTextWriter writer);
override this.AddAttributesToRender : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub AddAttributesToRender (writer As HtmlTextWriter)

Parameters

writer
HtmlTextWriter

An HtmlTextWriter that represents the output stream to render HTML content on the client.

Exceptions

The control specified in the AssociatedControlID property cannot be found.

Remarks

The AddAttributesToRender method is used primarily by control developers to insert the additional attributes and styles to the HtmlTextWriter output stream for a Label control.

The AddAttributesToRender method for a Label control determines whether the for attribute should be added with the AssociatedControlID value, and if the inline-block style should be applied to display the border style and width.

Applies to