Renders the CSS style sheet for design time.

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

Syntax

C#
public void RenderDesignTimeStyleSheet(
	HtmlTextWriter writer,
	string cssRef,
	bool resource
)
Visual Basic
Public Sub RenderDesignTimeStyleSheet ( _
	writer As HtmlTextWriter, _
	cssRef As String, _
	resource As Boolean _
)

Parameters

writer
Type: System.Web.UI..::..HtmlTextWriter
The HtmlTextWriter object that receives the content.
cssRef
Type: System..::..String
Referrence to CSS file.
resource
Type: System..::..Boolean
Whether the css file is in resource or external file.

Remarks

If resource parameter is true, then the cssRef is the full name of the css file resource in assembly. If resource parameter is false, then the cssRef is the url to the css file.

See Also