Class ReportParameter
Class for ReportParameter.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models.ReportViewer
Assembly: Syncfusion.EJ.dll
Syntax
public class ReportParameter : EJTagHelper
Constructors
ReportParameter()
Declaration
public ReportParameter()
Properties
Labels
Gets or sets the parameter labels.
Declaration
[JsonProperty("labels")]
public List<string> Labels { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The labels. |
Name
Gets or sets the name of the parameter.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The Parameter name. |
Nullable
Gets or sets whether the parameter allows nullable value or not.
Declaration
[JsonProperty("nullable")]
public bool Nullable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Prompt
Gets or sets the prompt message associated with the specified parameter.
Declaration
[JsonProperty("prompt")]
public string Prompt { get; set; }
Property Value
Type | Description |
---|---|
System.String | The Parameter prompt. |
Values
Gets or sets the parameter values.
Declaration
[JsonProperty("values")]
public List<string> Values { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The values. |