Visual Basic (Declaration) | |
---|---|
<CategoryAttribute("Allowed Values")> <DescriptionAttribute("The minimum allowed value to be entered")> Public Property MinimumAllowed As Integer |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As NumericTextBox Dim value As Integer instance.MinimumAllowed = value value = instance.MinimumAllowed |
C# | |
---|---|
[CategoryAttribute("Allowed Values")] [DescriptionAttribute("The minimum allowed value to be entered")] public int MinimumAllowed {get; set;} |
Managed Extensions for C++ | |
---|---|
[CategoryAttribute("Allowed Values")] [DescriptionAttribute("The minimum allowed value to be entered")] public: __property int get_MinimumAllowed(); public: __property void set_MinimumAllowed( int value ); |
C++/CLI | |
---|---|
[CategoryAttribute("Allowed Values")] [DescriptionAttribute("The minimum allowed value to be entered")] public: property int MinimumAllowed { int get(); void set ( int value); } |
Property Value
The minimum value that can be entered into the NumericTextBoxThe default minimum allowed value is -1000
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7