binxie
2024-01-16 4d3febe8045eb0fa0283af3c53b0c48344b8664d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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>