RichTextRun Interface
A region of the cell text with its own set of font characteristics.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Remarks
A cell in a worksheet may contain rich formatted text (RichTextString) grouped into one or more runs. Each run is specified by the RichTextRun object and defines a region of the cell text (RichTextRun.Text) with its own set of font characteristics (RichTextRun.Font). The RichTextString.Runs property provides access to the collection that stores text runs.
To apply rich formatting to the cell text, do one of the following:
- Explicitly add text runs with the specified font settings to the rich text string using the RichTextString.AddTextRun method.
- Use the RichTextString.Characters method overloads to format specific characters within the cell text. This method returns the RichTextRange object that represents the specified text subset and allows you to set its font characteristics using the RichTextRange.Font property or RichTextRange.SetFont method.
Call the CellRange.SetRichText method to assign the rich formatted text to a cell.
For details on how to apply different fonts to specific regions of the cell text, refer to the How to: Apply Rich Formatting to Cell Text document.