HtmlTableRow.RenderEndTag(HtmlTextWriter) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Renders the HtmlTableRow control's end tag.
protected:
override void RenderEndTag(System::Web::UI::HtmlTextWriter ^ writer);
protected override void RenderEndTag (System.Web.UI.HtmlTextWriter writer);
override this.RenderEndTag : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub RenderEndTag (writer As HtmlTextWriter)
Parameters
- writer
- HtmlTextWriter
The HtmlTextWriter object that receives the rendered content.
Remarks
The RenderEndTag method provides additional formatting after calling the base class's RenderEndTag method. The added formatting makes the HtmlTableRow control's rendered HTML easier to read by adding a line return after the closing <tr>
tag.
The RenderEndTag method is used primarily by control developers extending the functionality of the HtmlTableRow control.