Skip to main content
All docs
V22.1
  • DataFormCustomItem.EditorValue Property

    Gets or sets a value of the data object’s property assigned to DataFormCustomItem.FieldName.

    Namespace: DevExpress.XamarinForms.DataForm

    Assembly: DevExpress.XamarinForms.Editors.dll

    NuGet Package: DevExpress.XamarinForms.Editors

    Declaration

    public object EditorValue { get; set; }

    Property Value

    Type Description
    Object

    An object that specifies the data object’s property value.

    Remarks

    When you define a custom editor for the data form, you can bind the custom editor view to any property of the data form’s data object (it is the binding context of the data form’s custom editors). In this case, the data form’s built-in validate and commit mechanisms are not available for the custom editor. If you need to validate and commit values entered within the custom editor, bind its view to the EditorValue property.

    See Also