Skip to main content
.NET 6.0+

ObjectFormatter Class

Represents a string formatter. Exposes the static helper ObjectFormatter.Format method that replaces format items in the specified string with the property values of the specified object.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public class ObjectFormatter :
    ICustomFormatter,
    IFormatProvider

Remarks

The ObjectFormatter is an auxiliary class that exposes the ObjectFormatter.Format method. This method can be used to create calculated properties in persistent classes. It takes an object and a string that contains format items. The method treats all the format items as the property names of the object. It replaces all the format items in the passed string with property values of the passed object.

Inheritance

Object
ObjectFormatter
See Also