Share via


IntProperty.MinValue Property

Gets or sets the minimum allowed value for this property.

MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.

Namespace:  Microsoft.Build.Framework.XamlTypes
Assembly:  Microsoft.Build.Framework (in Microsoft.Build.Framework.dll)

Syntax

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

Property Value

Type: Nullable<Int32>
Returns the minimum allowed value. Returns nulla null reference (Nothing in Visual Basic) when this property is not set.

Remarks

This field is optional.

The value of this property must be less than or equal to the MaxValue property (if the latter is defined).

.NET Framework Security

See Also

Reference

IntProperty Class

Microsoft.Build.Framework.XamlTypes Namespace