expressappframework-devexpress-dot-expressapp-dot-utils-ec269779.md
Contains values specifying how compound names can be processed.
Namespace : DevExpress.ExpressApp.Utils
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public enum CompoundNameConvertStyle
Public Enum CompoundNameConvertStyle
| Name | Description |
|---|---|
None |
Specifies that a compound name must remain unmodified.
|
| SplitOnly |
Specifies that the words forming a compound name must be separated by white spaces.
|
| SplitAndCapitalization |
Specifies that the words forming a compound name must be separated by white spaces. Additionally, the first word must remain capitalized, while the subsequent words must be converted to lowercase.
|
The following properties accept/return CompoundNameConvertStyle values:
Compound names consist from several capitalized words glued together. Examples of such names are BusinessClass , RestoreDefaultSettings , MyApplicationModule and so on. The CompoundNameConvertStyle enumeration contains values that specify how such names can be processed at various points in an XAF application.
You can use the CaptionHelper.ConvertCompoundName method, to convert a compound name according to a specified CompoundNameConvertStyle mode.
See Also