Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

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.v20.2.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.

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
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