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

MultiEditorRow.SeparatorString Property

Gets or sets the string used as an item cell separator within a multi-editor row.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#Declaration

[DefaultValue("")]
[DXCategory("Appearance")]
[XtraSerializableProperty]
public virtual string SeparatorString { get; set; }

#Property Value

Type Default Description
String String.Empty

A string representing an item separator in a multi-editor row.

#Remarks

When a multi-editor row consists of more than one item (that is its MultiEditorRow.PropertiesCollection contains several MultiEditorRowProperties objects), item header cells as well as item value cells are displayed one after another divided by a specific cell separator. The separator type is specified by the MultiEditorRow.SeparatorKind property.

If the MultiEditorRow.SeparatorKind property is set to the SeparatorKind.String value, an item cell separator is represented by a string. The separating string is specified by the SeparatorString property. Providing a specific string separator can enhance the look & feel of the grid control.

Assigning values to the SeparatorString property is not in effect if the row’s MultiEditorRow.SeparatorKind property is set to the SeparatorKind.VertLine value.

See Also