ComponentOne FlexPivot for WinForms
C1.Win.FlexPivot.4.5.2 Assembly / C1.Win.FlexPivot Namespace / C1FlexPivotGrid Class / EndPrint Event

In This Topic
    EndPrint Event (C1FlexPivotGrid)
    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 C1.Win.C1FlexGrid.C1FlexGridBase.PrintGrid method to print the grid and specify the document name, common printing options, headers and footers.

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

    See Also