NumericSetting Constructor (Guid, String, String, Boolean, Number, Number, Number, Boolean)

Initializes a new instance of the NumericSetting class.

Namespace:  Dundas.BI.Data.Parameters
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
public NumericSetting(
	Guid id,
	string name,
	string description,
	bool isElementSpecific,
	Number defaultValue,
	Number minimumValue,
	Number maximumValue,
	bool changesOutputMetadata
)

Parameters

id
Type: SystemGuid
The setting ID.
name
Type: SystemString
Name of the setting.
description
Type: SystemString
The setting description.
isElementSpecific
Type: SystemBoolean
Flag that specifies the current instance is attached to a data element.
defaultValue
Type: Dundas.BINumber
The default value.
minimumValue
Type: Dundas.BINumber
The minimum value.
maximumValue
Type: Dundas.BINumber
The maximum value.
changesOutputMetadata
Type: SystemBoolean
Boolean value that specifies if a change of the current parameter value changes the output metadata.
Exceptions
ExceptionCondition
ArgumentExceptiondefaultValue is smaller than minimumValue or defaultValue is greater than maximumValue.
See Also