[]
        
(Showing Draft Content)

C1.Win.InputPanel.InputComponent.BoundValue

BoundValue Property

BoundValue

Gets or sets the bound data value associated with this component.

Declaration
[Bindable(true)]
[Browsable(false)]
public virtual object BoundValue { get; set; }
Remarks

Use this property to bind the component to values that can be null.

For example, the InputCheckBox component has a boolean Checked property of type boolean that can be bound to boolean fields, the InputNumericBox component has a Value property of type decimal that can be bound to numeric fields, and the InputDatePicker has a Value property of type DateTime that can be bound to date fields.

These are all value types and thus cannot be set to null or Value. All these properties map internally to the BoundValue property, which is of type object and can be set to null.