Parameter
Class
A parameter passed to the IReportDocument object when initialized
Definition
Namespace:Telerik.ReportViewer.Html5.WebForms
Assembly:Telerik.ReportViewer.Html5.WebForms.dll
Syntax:
C#
public class Parameter
Inheritance: objectParameter
Constructors
C#
public Parameter()
Properties
Name
string
Gets or sets the name of the parameter that identifies it within the report's parameter collection.
C#
public string Name { get; set; }
Remarks:
Must match the parameter name defined in the report to ensure proper parameter binding during report processing.
Value
object
Gets or sets the value of the parameter with automatic type conversion for proper report processing.
C#
[TypeConverter(typeof(StringToObjectConverter))]
public object Value { get; set; }
Remarks:
Supports automatic conversion of string values to appropriate data types including integers, decimals, DateTime, TimeSpan, and boolean values for HTML5 report processing.