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