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

CustomFormatObjectEventArgs(String, Object, EmptyEntriesMode) Constructor

Creates and initializes an instance of the CustomFormatObjectEventArgs class.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public CustomFormatObjectEventArgs(
    string formatString,
    object obj,
    EmptyEntriesMode emptyEntriesMode
)

Parameters

Name Type Description
formatString String

A format string that is being processed. This parameter is assigned to the CustomFormatObjectEventArgs.FormatString property.

obj Object

An object whose property values must replace the format items in the format string. This parameter is assigned to the CustomFormatObjectEventArgs.Object property.

emptyEntriesMode EmptyEntriesMode

An EmptyEntriesMode enumeration value that defines the processing behavior.

Remarks

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

See Also