Click or drag to resize
KaxNumericTextBoxValue Property
Gets or sets the value of the KaxInput control.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual Nullable<double> Value { 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.
Remarks

Use 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