Renders the CSS VisualStyle for design time.

Namespace:  C1.Web.iPhone
Assembly:  C1.Web.iPhone.3 (in C1.Web.iPhone.3.dll)

Syntax

C#
public void RenderDesignTimeVisualStyle(
	HtmlTextWriter writer
)
Visual Basic
Public Sub RenderDesignTimeVisualStyle ( _
	writer As HtmlTextWriter _
)

Parameters

writer
Type: System.Web.UI..::..HtmlTextWriter
The HtmlTextWriter object that receives the content.

Remarks

Any inherited web control needs to call this method in Render() method. This method would render the framework style sheet shared by all web controls automatically. This method would also render the style sheet specified by the VisualStyle name. Also, the IC1ThemeSupport.RenderDesignTimeStyleSheets() method implemented by user control will be called to give the control an opportunity to render additional style sheets not related to the VisualStyle name.

See Also