Infragistics(R) NetAdvantage(R) : Silverlight 2011.2
ValueInput Class
Members  See Also  E-mail your feedback on this topic.
Infragistics.Controls.Editors Namespace : ValueInput Class

An abstract base class that provides functionality for displaying or edit values.

Syntax

Visual Basic (Declaration) 
Public MustInherit Class ValueInput 
   Inherits System.Windows.Controls.Control
C# 
public abstract class ValueInput : System.Windows.Controls.Control 

Remarks

The ValueInput exposes Infragistics.Controls.Editors.ValueInput.Value and Text properties that return the current value and the text representation of that value respectively. The ValueToTextConverter is used to convert between the Value and Text.

The ValueInput supports being put into edit mode. When in edit mode, the Infragistics.Controls.Editors.ValueInput.Value of the control can be changed by the end user. The ValueInput.ValueConstraint can be set to a ValueConstraint instance to provide constraints such as minimum and maximum values that can be used to limit what is considered a valid value for the control. The ValueConstraint's ValueConstraint.Nullable property can be used to specify if the control will accept a null entry. The ValueInput.InvalidValueBehavior property determines how the control should behave when it is exiting edit mode and the current value is not valid.

See Also