Skip to main content

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

EnumItemsSourceBehavior.SplitNames Property

Gets or sets whether an enumeration member’s name is split. This property is in effect if the member’s name is written in Pascal Case. This is a dependency property.

Namespace: DevExpress.Mvvm.UI

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public bool SplitNames { get; set; }

#Property Value

Type Default Description
Boolean true

true, if an enumeration member’s name is split; otherwise, false.

#Remarks

An enumeration member’s name can consist of multiple words written in Pascal Case. You can set the SplitNames to true to add space between these words.

For example, if an enumeration member’s name is SalesOrder and you set the SplitNames to true, an associated control displays this member name as Sales Order.

See Also