WebPartZoneBase.RenderBody(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.
Overrides the base method to render the body area of a zone derived from the WebPartZoneBase class.
protected:
override void RenderBody(System::Web::UI::HtmlTextWriter ^ writer);
protected override void RenderBody (System.Web.UI.HtmlTextWriter writer);
override this.RenderBody : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub RenderBody (writer As HtmlTextWriter)
Parameters
- writer
- HtmlTextWriter
The HtmlTextWriter that receives the zone's body content.
Remarks
The RenderBody method renders the body area of a zone, which is the main content area between the header and footer areas and contains WebPart controls.
The RenderBody method overrides the base method in the WebZone class to provide specialized rendering that addresses layout and style attributes that apply uniquely to WebPartZoneBase zones. The method renders a table that contains the entire contents of the body, and within that table, it sets different attribute values depending on various conditions, including whether the LayoutOrientation property is set to vertical or horizontal, and whether the page is currently in design display mode.