ClassParameter
A parameter passed to the IReportDocument object when initialized
Definition
Namespace:Telerik.ReportViewer.Html5.WebForms
Assembly:Telerik.ReportViewer.Html5.WebForms.dll
Syntax:
public class Parameter
Inheritance: objectParameter
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
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
[TypeConverter(typeof(StringToObjectConverter))]
public object Value { get; set; }
Property Value
object
Remarks
Supports automatic conversion of string values to appropriate data types including integers, decimals, DateTime, TimeSpan, and boolean values for HTML5 report processing.