Skip to main content

TableCell.VerticalMerging Property

Obtains the vertical merge state of the current cell (whether the cell is merged vertically) and its relative position in a merged object.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v25.1.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

VerticalMergingState VerticalMerging { get; }

Property Value

Type Description
VerticalMergingState

A VerticalMergingState enumeration member that specifies the state of the cell regarding the vertical merge.

Available values:

Name Description
None

The cell is not merged vertically.

Continue

The cell continues vertical merging.

Restart

The cell starts vertical merging.

Example

This code snippet performs the following:

  • creates a table containing 6 rows and 8 columns
  • merges cells horizontally in the third row from the third to the sixth column
  • merges cells vertically in the third column from the fourth to the eighth row

View Example

Document document = server.Document;
Table table = document.Tables.Create(document.Range.Start, 6, 8);
table.BeginUpdate();
table.MergeCells(table[2, 1], table[5, 1]);
table.MergeCells(table[2, 3], table[2, 7]);
table.EndUpdate();
See Also