KaxNumericTextBoxValue Property |
Gets or sets the value of the KaxInput control.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic virtual Nullable<double> Value { get; set; }
Public Overridable Property Value As Nullable(Of Double)
Get
Set
public:
virtual property Nullable<double> Value {
Nullable<double> get ();
void set (Nullable<double> value);
}
abstract Value : Nullable<float> with get, set
override Value : Nullable<float> with get, set
Property Value
Type:
NullableDouble
null if the Text property is Empty.The Value property are Nullable Double type. A
nullable type can represent the normal range of values for its underlying value type,
plus an additional null value. For example, a Nullable<Double>, pronounced
"Nullable of Double," can be assigned any value from -2^46 (-70368744177664) to
2^46 (70368744177664), or it can be assigned the null value.
RemarksUse the Text property to specify or determine the text displayed in the
KaxInput control. To limit the number of characters accepted by the control, set
the MaxLength property. If you want to prevent the text from being modified, set
the ReadOnly property.
The value of this property, when set, can be saved automatically to a
resource file by using a designer tool.
See Also