Working with FlexReport > Printing FlexReport |
After creating a report, you may want to print it. This can be accomplished using Print method of C1DocumentSource class. This method can be used to print the generated report.
To print a report, use the following code:
Dim rep As New C1FlexReport() rep.Load("..\..\Products Report.flxr", "Products Report") rep.Render() rep.Print()
C1FlexReport rep = new C1FlexReport(); rep.Load(@"..\..\Products Report.flxr", "Products Report"); rep.Render(); rep.Print();