function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
QueryQuery 

Custom Template in salesforce

Hi,

 

 i want to use custom template in salesforce. Is ther any custome template support there in salesforce environment.

 i got some third paty tool which are providing custom template for salesforce . 'CloudPDF'  is one of them .is it right  to use the third party tool for my requirment.

Best Answer chosen by Admin (Salesforce Developers) 
BulentBulent

If you are trying to generate PDF docs then you can use the native visualforce feature for this:

 

<apex:page renderas="pdf">

<html>

<head>

<style> body { font-family: Arial Unicode MS; } </style>

</head>

This page is rendered as a PDF

</html>

</apex:page>

 

 Please check the visualforce developers guide for more information.

 

Message Edited by Bulent on 06-11-2009 10:37 AM