PdfWebControlRenderHead Method |
Renders the
PdfWebControl required HTML HEAD elements (e.g. script, style, etc.) to the specified text writer, for use in advanced applications such as a
custom Middleware, inline ASPX page, ASP.NET MVC view rendering, a HttpHandler, or Web API.
Namespace:
RadPdf.Web.UI
Assembly:
RadPdfStandard (in RadPdfStandard.dll) Version: 4.1.0.0 (4.1.0.0)
Syntaxpublic static string RenderHead()
Public Shared Function RenderHead As String
Return Value
Type:
StringA string that represents the HTML HEAD child elements.
Remarks
This method does not conisder any value assigned to BasePath.
Examples
The following code example demonstrates the rendering to an ASPX page (presuming a
PdfWebControl named
PdfWebControl1.
<html>
<head>
<title>Example</title>
<%=PdfWebControl.RenderHead() %>
</head>
<body>
<%=PdfWebControl1.RenderControl() %>
</body>
</html>
See Also