Document Solutions for Excel, .NET Edition | Document Solutions
GrapeCity.Documents.Excel Namespace / PrintOutOptions Class / PagePrinted Event
In This Topic
    PagePrinted Event (PrintOutOptions)
    In This Topic
    Occurs after printing a page.
    Syntax
    public event System.EventHandler<PagePrintedEventArgs> PagePrinted
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether an additional page should be printed. If the value is true, you can set it to false to prevent printing more pages. If the value is false, nothing will happen if you set this property.  
    Gets a value indicating the total page count. (Inherited from GrapeCity.Documents.Excel.PagePrintEventArgs)
    Gets a 1-based value indicating which page is associated with this event. (Inherited from GrapeCity.Documents.Excel.PagePrintEventArgs)
    See Also