Class Parameter
A parameter passed to the IReportDocument object when initialized
Inheritance
Namespace: Telerik.ReportViewer.Html5.WebForms
Assembly: Telerik.ReportViewer.Html5.WebForms.dll
Syntax
public class Parameter
Remarks
Contains automatic type conversion capabilities to ensure parameter values are properly formatted for report processing.
Constructors
Parameter()
Declaration
public Parameter()
Properties
Name
Gets or sets the name of the parameter that identifies it within the report's parameter collection.
Declaration
public string Name { get; set; }
Property Value
|
System.String
|
Remarks
Must match the parameter name defined in the report to ensure proper parameter binding during report processing.
Value
Gets or sets the value of the parameter with automatic type conversion for proper report processing.
Declaration
public object Value { get; set; }
Property Value
|
System.Object
|
Remarks
Supports automatic conversion of string values to appropriate data types including integers, decimals, DateTime, TimeSpan, and boolean values for HTML5 report processing.