PDF export dioalog customize

edited 11:26PM in FastReport .NET
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.

Comments

  • edited 11:26PM
    Hello,

    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:");
  • edited 11:26PM
    Hello,
    No, I want to change creator and producer TextEdit values which are FastReport and FastReport.Net.
    Thanks.
  • edited 11:26PM
    These values are defined in the PDFExport class. You cannot replace it when using a standard preview window (unless you have the source code).
  • 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";

Leave a Comment