DoubleProperty Constructors

Definition

Creates a new instance of the DoubleProperty class.

Overloads

DoubleProperty(String, Nullable<Double>)

Creates a new instance of the DoubleProperty class.

DoubleProperty(String, Nullable<Double>, Nullable<Double>, Nullable<Double>)

Creates a new instance of the DoubleProperty class.

DoubleProperty(String, Nullable<Double>)

Creates a new instance of the DoubleProperty class.

public:
 DoubleProperty(System::String ^ name, Nullable<double> defaultValue);
public DoubleProperty (string name, double? defaultValue);
new Microsoft.ReportingServices.RdlObjectModel.DoubleProperty : string * Nullable<double> -> Microsoft.ReportingServices.RdlObjectModel.DoubleProperty
Public Sub New (name As String, defaultValue As Nullable(Of Double))

Parameters

name
String

The name of the property.

defaultValue
Nullable<Double>

The default value.

Applies to

DoubleProperty(String, Nullable<Double>, Nullable<Double>, Nullable<Double>)

Creates a new instance of the DoubleProperty class.

public:
 DoubleProperty(System::String ^ name, Nullable<double> defaultValue, Nullable<double> minimum, Nullable<double> maximum);
public DoubleProperty (string name, double? defaultValue, double? minimum, double? maximum);
new Microsoft.ReportingServices.RdlObjectModel.DoubleProperty : string * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.ReportingServices.RdlObjectModel.DoubleProperty
Public Sub New (name As String, defaultValue As Nullable(Of Double), minimum As Nullable(Of Double), maximum As Nullable(Of Double))

Parameters

name
String

The name of the property.

defaultValue
Nullable<Double>

The default value.

minimum
Nullable<Double>

The minimum value.

maximum
Nullable<Double>

The maximum value.

Applies to