Table of Contents

Class ProgressEventArgs

Namespace: FastReport.Olap.Utils
Assembly: FastCube.Core.dll

Provides data for the Progress event.

public class ProgressEventArgs

Inheritance

objectProgressEventArgs

Constructors

ProgressEventArgs(string, int, int)

Initializes a new instance of the FastReport.Olap.Utils.ProgressEventArgs class using the specified message, page number and total number of pages.

public ProgressEventArgs(string message, int progress, int total)

Parameters

message string

The progress message.

progress int

Current page number.

total int

Number of total pages.

Properties

Message

Gets a progress message.

public string Message { get; }

Property Value

string

Progress

Gets the current page number.

public int Progress { get; }

Property Value

int

Total

Gets the number of total pages.

public int Total { get; }

Property Value

int