Xceed DataGrid for WPF v7.3 Documentation
Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid.Print Namespace / DataGridPaginator Class / Progress Event


In This Topic
    Progress Event
    In This Topic
    Raised to provide progress information during the printing or exporting process.
    Syntax
    'Declaration
     
    Public Event Progress As EventHandler(Of ProgressEventArgs)
    'Usage
     
    Dim instance As DataGridPaginator
    Dim handler As EventHandler(Of ProgressEventArgs)
     
    AddHandler instance.Progress, handler
    public event EventHandler<ProgressEventArgs> Progress
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets progress information on the content of a grid that is being printed or exported.  
    Requirements

    Target Platforms: Windows 11, Windows, 10, 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