IntProperty.MinValue Property

Definition

Minimum allowed value for this property.

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

Property Value

Nullable<Int32>

The minimum 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 less than or equal to the MaxValue property (assuming that the latter is defined).

Applies to