setCurrency(currency)
For costs calculation the sign of several currencies can be set using setCurrency(currency) method call. This is only relevant if the “Costs” column is required. This is only relevant for the AutoExecute command. Call by AuxiliaryCommand will be set in another way Available items are : Euro "E", Dollar "D", Pound "P", Yen/Yuan "Y". If nothing set, Euro € is default. pdf = ReportUtility() myPath = "C:\\Users\\...TechnologyCommon\\Standard\\AuxiliaryCommands\\Logos\\" pdf.setHeaderLogo("MyCustomerHeader.jpg") pdf.setFooterLogo("MyCustomerFooter.png") pdf.setCosts(2.56) pdf.setCurrency("D") pdf.createAutoExecutePDFReport(Operator, myPath)
|