Share via


IntProperty Constructores

Definición

Crea una nueva instancia de la clase IntProperty.

Sobrecargas

IntProperty(String, Nullable<Int32>)

Crea una nueva instancia de la clase IntProperty.

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

Crea una nueva instancia de la clase IntProperty.

IntProperty(String, Nullable<Int32>)

Crea una nueva instancia de la clase IntProperty.

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))

Parámetros

name
String

El nombre de la propiedad.

defaultValue
Nullable<Int32>

El valor predeterminado.

Se aplica a

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

Crea una nueva instancia de la clase IntProperty.

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))

Parámetros

name
String

El nombre de la propiedad.

defaultValue
Nullable<Int32>

El valor predeterminado.

minimum
Nullable<Int32>

Valor mínimo.

maximum
Nullable<Int32>

Valor máximo.

Se aplica a