Browse By Tags

  • Multiple sections on one page

    I am trying to setup and print a Report that displays a Visual Element (Canvas with bitmap and some other graphical and text elements) and below it a data  grid (using a XamDataGrid).

    I need for both the Visual element and the data grid to print on the…

  • How to print and/or export an rtf formatted document?

    Is there any solution to print and/or export an rtf formatted document page by page?

  • Is a page rendered for print after the paginator executes MoveToPosition?

    I've got the following code in an implementation of IEmbeddedVisualPaginator:

             public bool MoveToNextPage()
            {
                if (_reportSettings.PageRange.PageTo > 0 && _logicalPageNumber >= _reportSettings.PageRange.PageTo)
                    return false;

                IEnumerable…

  • How to Print XamDataGrid containing ListBox

    Hello,

    I am using XamDataGrid and try to print it using PrintReport.

    I create a report and add my grid within a EmbeddedVisualReportSection. Everything is ok excepted two columns which display listbox. Print generates ScrollBar and i don't want this…

  • Sample implementation of IEmbeddedVisualPaginator

    I've been looking for a sample or reference implementation of IEmbeddedVisualPaginator, but no luck. Do you have one available somewhere?