IntProperty Constructors

Definition

Creates a new instance of the IntProperty class.

Overloads

IntProperty(String, Nullable<Int32>)

Creates a new instance of the IntProperty class.

IntProperty(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Creates a new instance of the IntProperty class.

IntProperty(String, Nullable<Int32>)

Creates a new instance of the IntProperty class.

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

Parameters

name
String

The name of the property.

defaultValue
Nullable<Int32>

The default value.

Applies to

IntProperty(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Creates a new instance of the IntProperty class.

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

Parameters

name
String

The name of the property.

defaultValue
Nullable<Int32>

The default value.

minimum
Nullable<Int32>

The minimum value.

maximum
Nullable<Int32>

The maximum value.

Applies to