Class DesignParameter
Inheritance
System.Object
DesignParameter
Namespace: BoldReports.RDL.Data
Assembly: BoldReports.Web.dll
Syntax
public class DesignParameter : Object
Constructors
DesignParameter()
Declaration
public DesignParameter()
Properties
DataType
Gets or sets the data type of the design parameter.
Declaration
public string DataType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the data type of the parameter. |
IsNull
Gets or sets a value indicating whether the parameter is null.
Declaration
public bool IsNull { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A System.Boolean that is |
Name
Gets or sets the name of the design parameter.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the name of the parameter. |
Value
Gets or sets the value of the design parameter.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An System.Object representing the value of the parameter. |