Skip to main content
A newer version of this page is available.
All docs
V18.2
Row

Range.GetRichText() Method

Gets the rich text string contained in a cell.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

RichTextString GetRichText()

Returns

Type Description
RichTextString

A RichTextString object that is a cell’s rich text.

Remarks

Use the Range.HasRichText property to check whether a cell contains rich formatted text. To retrieve rich text from a cell, use the GetRichText property. For the cell text with regular cell formatting applied, the GetRichText method returns RichTextString with a single run containing only the cell text. The run’s RichTextRun.Font is null. If a cell contains a non-textual value (e.g., number or date), the returned RichTextString contains an empty text.

If you call the GetRichText method for a cell range, it returns a non-empty rich text only when all cells in this range have the same text with identical rich format settings; otherwise, GetRichText returns an empty text with an empty RichTextString.Runs collection.

See Also