DoubleProperty Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.