LoginSignup
5
5

More than 5 years have passed since last update.

Salesforce Visualforce で 日本語PDF出力

Posted at
apex
```xml
<apex:page 
   renderAs="pdf" 
   controller="PdfController" 
   showHeader="false" 
   sidebar="false" 
   action="{!init}" 
   applyBodyTag="false" 
   applyHtmlTag="false">
<html>
    <head>
        <style>
@page { 
    size: 8.27in 11.69in;
    margin: 10px; 
} 
body {
    font-family: 'Arial Unicode MS';
}
        </style>
    </head>
    <body>
        <!-- ここに表示内容 -->
    </body>
</html>    
</apex:page>
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5