Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.Reporting.v4.3 Assembly / Xceed.Grid.Reporting Namespace / Report Class / GenerateReportProgression Event


In This Topic
    GenerateReportProgression Event
    In This Topic
    Raised when the report is being generated to display progression information.
    Syntax
    'Declaration
     
    Public Event GenerateReportProgression As GenerateReportProgressionEventHandler
    'Usage
     
    Dim instance As Report
    Dim handler As GenerateReportProgressionEventHandler
     
    AddHandler instance.GenerateReportProgression, handler
    public event GenerateReportProgressionEventHandler GenerateReportProgression
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets a value representing the total number of pages or rows generated so far.  
    Gets the status of the report.  
    Gets a value representing the type of progression information used when generating the report.  
    Remarks

    Progression information is provided on a page or row basis. To determine what type of progression value is used, the ValueType can be consulted.

    The GenerateReportProgression event can be raised multiple times for 1 report generation. For example, in the case of HTML exportation, the GenerateReportProgression event will be raised for the preparation phase and then for each page/row being exported. In all other cases, there will be a preparation phase for the first page/row and then an exporting/printing phase for each page/row.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also