IntProperty.MaxValue Property

Definition

Maximum allowed value for this property.

public:
 property Nullable<int> MaxValue { Nullable<int> get(); void set(Nullable<int> value); };
public int? MaxValue { get; set; }
member this.MaxValue : Nullable<int> with get, set
Public Property MaxValue As Nullable(Of Integer)

Property Value

Nullable<Int32>

The maximum allowed value, or null if this property is not set.

Remarks

This field is optional. It returns null when this property is not set. The value of this property must be greater than or equal to the MinValue property (assuming that the latter is defined).

Applies to