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

TableCell.ContentRange Property

Gets the document range that contains the cell content (excluding the table paragraph mark).

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v21.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

DocumentRange ContentRange { get; }

Property Value

Type Description
DocumentRange

The range with the cell content.

Remarks

The ContentRange property returns the range with the cell content. Use the Range property to obtain the range occupied by the whole table cell, including the table paragraph mark.

The image below illustrates the difference between Range and ContentRange values:

IMAGE

Use the ContentRange property to append content to the cell, as shown below:

Table table = document.Tables[0];

//Apply formatting to the first cell
CharacterProperties properties = document.BeginUpdateCharacters(table[0, 1].ContentRange);
properties.FontName = "Segoe UI";
properties.FontSize = 16;
document.EndUpdateCharacters(properties);
ParagraphProperties alignment = document.BeginUpdateParagraphs(table[0, 1].ContentRange);
alignment.Alignment = ParagraphAlignment.Center;
document.EndUpdateParagraphs(alignment);

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ContentRange property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also