Skip to main content
A newer version of this page is available.

CustomGetValueEventArgs(String, Object) Constructor

Creates and initializes an instance of the CustomGetValueEventArgs class.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public CustomGetValueEventArgs(
    string memberPath,
    object obj
)

Parameters

Name Type Description
memberPath String

A name of the property that is being queried for its value. This parameter is assigned to the CustomGetValueEventArgs.MemberPath property.

obj Object

An object whose property value must replace the currently processed format item in the format string. This parameter is assigned to the CustomGetValueEventArgs.Object property.

Remarks

Since instances of the CustomGetValueEventArgs class are automatically created and passed to handlers of the CustomGetValueEventArgs event, you do not need to call this constructor from your application.

See Also