IntProperty 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 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.
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.