Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PropertyEditor.ReadValue() Method

In This Article

Reads a value to the current Property Editor’s control.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public void ReadValue()

#Remarks

This method calls the ReadValueCore method that does nothing in this class. To implement reading the property’s value to the Property Editor’s control, override the ReadValueCore method in your descendant of the PropertyEditor class. In addition, you can override the CanReadValue method to indicate whether the property’s value can now be read to the control. In the PropertyEditor class, this method checks whether the ViewItem.Control property is not set to null (Nothing).

After the property value is read to the Property Editor’s control, the PropertyEditor.ValueRead event is raised.

See Also