| Visual Basic (Declaration) | |
|---|---|
<DescriptionAttribute("The numeric value of the Text box")> <CategoryAttribute("Current Value")> Public Property Value As Double | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As FNumericTextBox Dim value As Double instance.Value = value value = instance.Value | |
| C# | |
|---|---|
[DescriptionAttribute("The numeric value of the Text box")] [CategoryAttribute("Current Value")] public double Value {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
[DescriptionAttribute("The numeric value of the Text box")] [CategoryAttribute("Current Value")] public: __property double get_Value(); public: __property void set_Value( double value ); | |
| C++/CLI | |
|---|---|
[DescriptionAttribute("The numeric value of the Text box")] [CategoryAttribute("Current Value")] public: property double Value { double get(); void set ( double value); } | |
Property Value
The value of the text box.Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code