Skip to main content

BaseEdit.EditValueType Property

Gets or sets the edit value’s type treatment. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Editors

Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public Type EditValueType { get; set; }

Property Value

Type Description
Type

The type to which the entered string is automatically converted.

Remarks

For example, if a user enters ‘100’ within the text editor whose EditValueType property is set to Int32, the editor automatically converts the input string to an integer value and assigns it to the BaseEdit.EditValue property.

See Also