Change Preview text (Xtrareport)

Asked

Viewed 46 times

2

would like to change the text of the Preview of a report Xtrareport.

See image below :

preview do xtrareport

  • Are you using csharp? Could you put some relevant code in the question?

1 answer

0


XtraReport1 relatorio = new XtraReport1();
relatorio.CreateDocument();
PrintPreviewFormEx printPreviewFormEx = new PrintPreviewFormEx();
printPreviewFormEx.Text = "Título do Relatório";
printPreviewFormEx.PrintingSystem = relatorio.PrintingSystem;
printPreviewFormEx.Show();

Browser other questions tagged

You are not signed in. Login or sign up in order to post.