Show / Hide Table of Contents

Class CustomCalcEventArgs

Provides data for the CustomCalc event.

Inheritance
System.Object
System.EventArgs
CustomCalcEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FastReport
Assembly: FastReport.OpenSource.dll
Syntax
public class CustomCalcEventArgs : EventArgs

Constructors

CustomCalcEventArgs(String, Object, Report)

Initializes a new instance of the CustomLoadEventArgs class using the specified file name and the report.

Declaration
public CustomCalcEventArgs(string expression, object Object, Report report)
Parameters
Type Name Description
System.String expression

The text of expression.

System.Object Object

The name of the file to load the report from.

Report report

The report.

Properties

CalculatedObject

Gets or sets a object.

Declaration
public object CalculatedObject { get; set; }
Property Value
Type Description
System.Object

Expression

Gets an expression.

Declaration
public string Expression { get; }
Property Value
Type Description
System.String

Report

The reference to a report.

Declaration
public Report Report { get; }
Property Value
Type Description
Report
Back to top Generated by DocFX