FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGridBase Class / PrintPage Event

In This Topic
    PrintPage Event (C1FlexGridBase)
    In This Topic
    Fires after the grid finishes printing a page.
    Syntax
    'Declaration
     
    
    Public Event PrintPage As PrintPageEventHandler
    public event PrintPageEventHandler PrintPage
    Event Data

    The event handler receives an argument of type PrintPageEventArgs containing data related to this event. The following PrintPageEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets a value indicating whether the print job should be canceled.  
    Gets the System.Drawing.Graphics used to paint the page.  
    Gets or sets a value indicating whether an additional page should be printed.  
    Gets the rectangular area that represents the portion of the page inside the margins.  
    Gets the rectangular area that represents the total area of the page.  
    Gets the page settings for the current page.  
    Remarks

    This event is typically used to provide feedback while printing the grid, and to offer the user a cancel button that can be used to stop the printing process. You can also use this event to add custom elements to the printed pages.

    Use the PrintGrid(String,PrintGridFlags) method to print the grid and specify the document name, common printing options, headers and footers.

    Use the PrintParameters property to specify less common printing options such as header and footer fonts, page margins, orientation, and so on.

    See Also