PdfWebControlLiteRenderControl Method |
Namespace:
RadPdf.Web.UI
Assembly:
RadPdf (in RadPdf.dll) Version: 3.48.0.0 (3.48.0.0)
Syntax public string RenderControl()
Public Function RenderControl As String
Return Value
Type:
StringA string that represents the control content.
Remarks
If this control is not
Visible, no HTML will be returned.
Examples
The following code example demonstrates the rendering to an ASPX page (presuming a
PdfWebControlLite named
PdfWebControlLite1.
<html>
<head>
<title>Example</title>
<%=PdfWebControlLite.RenderHead() %>
</head>
<body>
<%=PdfWebControlLite1.RenderControl() %>
</body>
</html>
See Also