<apex:page controller="ReAndQISNotePDFController" renderAs="pdf" applyHtmlTag="false" applyBodyTag="false" showheader="false" contentType="text/html; charset=UTF-8" >
|
<html>
|
<head>
|
<style>
|
/*table{margin: auto;}*/
|
body {
|
/*text-align: center;*/
|
font-family: Arial Unicode MS;
|
font-size:14px;
|
font-weight:200;
|
}
|
</style>
|
</head>
|
<body>
|
<table width="300" border="1" cellspacing="0">
|
<tr>
|
<td style="height:300px; text-align: center;width: 80%">
|
<!-- <td style="text-align: center;"> -->
|
<!-- <apex:outputText value="{!Noteinfo.Title}" escape="false" />
|
<br/>
|
<apex:outputField value="{!Noteinfo.Body}"/> -->
|
<apex:outputText value="{!Versioninfo.Title}" escape="false" />
|
<br/>
|
<apex:outputField value="{!Versioninfo.TextPreview}"/>
|
</td>
|
</tr>
|
</table>
|
</body>
|
</html>
|
</apex:page>
|