PDF export dioalog customize
Hello,
I want to modify PDF export dialog from information tab. But I can' t change producer and creator text value.
They are not resorucestrings or reachable properties.
Is it possible to customize preview form export dialogs text values?
Thanks in advance.
I want to modify PDF export dialog from information tab. But I can' t change producer and creator text value.
They are not resorucestrings or reachable properties.
Is it possible to customize preview form export dialogs text values?
Thanks in advance.
Comments
Do you want to change the Label's text? If so, use the following code:
FastReport.Utils.Res.Set("Export,Misc,Creator", "Creator:");
FastReport.Utils.Res.Set("Export,Misc,Producer", "Producer:");
No, I want to change creator and producer TextEdit values which are FastReport and FastReport.Net.
Thanks.
I want to change them programtically. How can i do so.
I have code of my application
PDFExport pdfExport = new PDFExport();
pdfExport.Creator = "CreatorName";
pdfExport.Producer = "ProducerName";