FlexGrid for WPF | ComponentOne
C1.WPF.Grid Assembly / C1.WPF.Grid Namespace / FlexGrid Class / CreatePrintPaginator Method
The available size of the page.
The collection of the printed pages.
The GridPrintParameters object
A list of column breaks
A list of row breaks
The zoom factor

In This Topic
    CreatePrintPaginator Method (FlexGrid)
    In This Topic
    Factory method to create printing paginator.
    Syntax
    'Declaration
     
    Public Overridable Function CreatePrintPaginator( _
       ByVal pageSize As Size, _
       ByVal pages As List(Of FrameworkElement), _
       ByVal printParameters As GridPrintParameters, _
       ByVal colBreaks As List(Of Integer), _
       ByVal rowBreaks As List(Of Integer), _
       ByVal zoom As Double _
    ) As DocumentPaginator
    public virtual DocumentPaginator CreatePrintPaginator( 
       Size pageSize,
       List<FrameworkElement> pages,
       GridPrintParameters printParameters,
       List<int> colBreaks,
       List<int> rowBreaks,
       double zoom
    )

    Parameters

    pageSize
    The available size of the page.
    pages
    The collection of the printed pages.
    printParameters
    The GridPrintParameters object
    colBreaks
    A list of column breaks
    rowBreaks
    A list of row breaks
    zoom
    The zoom factor
    See Also