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

DataLayoutControl.BorderlessGroupMarkEnd Property

Specifies the symbol that labels a borderless group’s end.

Namespace: DevExpress.Xpf.LayoutControl

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

NuGet Package: DevExpress.Wpf.LayoutControl

#Declaration

public static char BorderlessGroupMarkEnd { get; set; }

#Property Value

Type Description
Char

A Char value that labels a borderless group’s end.

#Remarks

By default, you have to wrap the borderless group name with ‘<’ and ‘>’ characters when using the DisplayAttribute.GroupName attribute on a bound property. For example, the example in the Data Layout Control topic has the following code to create a borderless group.

[Display(GroupName = "<Name>", Name = "Last name")]

Use the DataLayoutControl.BorderlessGroupMarkStart and BorderlessGroupMarkEnd properties to define your custom syntax and set your own characters that label the bounds of a borderless group. For instance, if you set the DataLayoutControl.BorderlessGroupMarkStart property to ‘?’ and the BorderlessGroupMarkEnd property to ‘!’, modify the code above as follows

[Display(GroupName = "?Name!", Name = "Last name")]
See Also