ReportContextInfo Class

Represents the information used to describe a reporting context.

C# Syntax
public class ReportContextInfo
Inheritance Hierarchy

System.Object
   HP.LFT.Report.ReportContextInfo

Public Constructors
 NameDescription
Public ConstructorReportContextInfo Constructor

Create a new instance of the ReportContextInfo class.  

C# Syntax
public ReportContextInfo ()
Top
Public Properties
 NameDescription
Public PropertyDescription

The description of the reporting context.

C# Syntax
public string Description {get; set;}
Public PropertyData

Custom additional data of the reporting context.

C# Syntax
public IDictionary<string,object> Data() {get; set;}
Public PropertyContextMode

The mode of the reporting context.

C# Syntax
public ReportContextMode ContextMode {get; set;}
Top
Public Methods
 NameDescription
Public Methodstatic (Shared in Visual Basic)VerificationMode

This method sets the mode of the reporting context to Verification.

C# Syntax
public ReportContextInfo VerificationMode()

Returns

An HP.LFT.Report.ReportContextInfo object with the context mode set to Verification.

Top