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

CustomFormatObjectEventArgs.EmptyEntriesMode Property

Returns the EmptyEntriesMode enumeration value that defines the processing behavior.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public EmptyEntriesMode EmptyEntriesMode { get; }

Property Value

Type Description
EmptyEntriesMode

An EmptyEntriesMode enumeration value that defines the processing behavior.

Available values:

Name Description
Default

Considered when a string passed to the ObjectFormatter.Format method contains format items that must be replaced by null(Nothing in VB) or empty values. Specifies that such format items must be removed.

RemoveDelimiterWhenEntryIsEmpty

Considered when a string passed to the ObjectFormatter.Format method contains format items that must be replaced by the null(Nothing in VB) or empty values. Specifies that such format items and the delimiter strings that precede them must be removed.

RemoveDelimeterWhenEntryIsEmpty

Obsolete. Use RemoveDelimiterWhenEntryIsEmpty instead.

Remarks

Use this property to determine the current mode of processing the string passed to the Format method. For additional information, refer to the EmptyEntriesMode topic.

See Also