Class ParameterEditors
Represents a class that provides a way to initialize the parameter editors of the report viewer.
Inheritance
Namespace: Telerik.ReportViewer.Html5.WebForms
Assembly: Telerik.ReportViewer.Html5.WebForms.dll
Syntax
public class ParameterEditors
Constructors
ParameterEditors()
The default constructor.
Declaration
public ParameterEditors()
Properties
BooleanEditor
Attach the parameter editor that will handle Boolean parameters.
Declaration
public string BooleanEditor { get; set; }
Property Value
System.String
|
CustomEditors
Attach parameter editors that can handle custom scenarios. For example MultiValue parameter of DateTime type. Custom editors are added before all other editors, in the specified order.
Declaration
public List<CustomParameterEditor> CustomEditors { get; set; }
Property Value
System.Collections.Generic.List<CustomParameterEditor>
|
DateTimeEditor
Attach the parameter editor that will handle DateTime parameters.
Declaration
public string DateTimeEditor { get; set; }
Property Value
System.String
|
DefaultEditor
Attach the parameter editor that will handle non defined parameters.
Declaration
public string DefaultEditor { get; set; }
Property Value
System.String
|
MultiSelectEditor
Attach the parameter editor that will handle parameters that have provided AvailableValues and MultiValue set to true.
Declaration
public string MultiSelectEditor { get; set; }
Property Value
System.String
|
MultiValueEditor
Attach the parameter editor that will handle parameters that have MultiValue set to true but have not provided AvailableValues.
Declaration
public string MultiValueEditor { get; set; }
Property Value
System.String
|
NumberEditor
Attach the parameter editor that will handle Numeric parameters.
Declaration
public string NumberEditor { get; set; }
Property Value
System.String
|
SingleSelectEditor
Attach the parameter editor that will handle parameters that have provided AvailableValues and MultiValue set to false.
Declaration
public string SingleSelectEditor { get; set; }
Property Value
System.String
|
StringEditor
Attach the parameter editor that will handle String parameters.
Declaration
public string StringEditor { get; set; }
Property Value
System.String
|