Version

Report Property (ReportProgressControl)

Returns/sets Report object whose progress will be indicated.
Syntax
'Declaration
 
Public Property Report As Report
public Report Report {get; set;}
Example
The following example shows how to use ReportProgressControl as a control.

Set ReportProgressControl to listening for report progress
Private Sub SetReportProgress()
    Dim reportObj As New Report()
    Dim section As New EmbeddedVisualReportSection(XamDataGrid1)
    reportObj.Sections.Add(section)
    
    
    ' Set ReportProgressControl's Report property to created report
    progressInfo.Report = reportObj
    reportObj.Print(True, True)
End Sub
Set ProgressWindow to listening for report progress
private void SetReportProgress()
{
	Report reportObj = new Report();
	EmbeddedVisualReportSection section = new EmbeddedVisualReportSection(XamDataGrid1);
	reportObj.Sections.Add(section);


	// Set ReportProgressControl's Report property to created report
	progressInfo.Report = reportObj;
	reportObj.Print(true, true);
}
Define PropgressWindow in Xaml
<Page  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
       
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
       
xmlns:igRep="http://infragistics.com/Reporting"  

>

    
<igRep:ProgressWindow x:Name="progressInfo" Width="200"/>

</Page>
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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