Skip to main content
.NET Framework 4.6.2+

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

CustomFormatObjectEventArgs.EmptyEntriesMode Property

Returns the EmptyEntriesMode enumeration value that defines the processing behavior.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#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