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

In This Topic
    EndPrint Event (C1FlexGrid)
    In This Topic
    Fires after the grid finishes printing.
    Syntax
    'Declaration
     
    
    Public Event EndPrint As PrintEventHandler
    public event PrintEventHandler EndPrint
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Returns System.Drawing.Printing.PrintAction.PrintToFile in all cases.  
    Remarks

    This event is typically used to update the user interface and provide feedback while printing the grid.

    Use the C1FlexGridBase.PrintGrid method to print the grid and specify the document name, common printing options, headers and footers.

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

    See Also