Table of Contents

Class ReportParameter

Represents the parameter data used in the context of an SDK operation. This data is displayed to report.

Inheritance
ReportParameter
Namespace: HP.LFT.Report
Assembly: HP.LFT.Report.dll
Syntax
public class ReportParameter

Constructors

ReportParameter()

Create a new instance of the ReportParameter class.

Declaration
public ReportParameter()

ReportParameter(string, object)

Creates a new instance of ReportParameter.

Declaration
public ReportParameter(string name, object value)
Parameters
Type Name Description
string name

the name of the ReportParameter.

object value

the value of the ReportParameter.

Properties

Name

The name of the parameter.

Declaration
public string Name { get; set; }
Property Value
Type Description
string

Value

The value of the parameter that will be displayed into report.

Declaration
public object Value { get; set; }
Property Value
Type Description
object