Skip to main content
A newer version of this page is available. .

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.v18.2.dll

Declaration

[DefaultValue("")]
[XtraSerializableProperty]
[DXCategory("Appearance")]
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