Access and Update the Portions of Rich Text of Cell
Contents
[
Hide
]
Aspose.Cells allows you to access and update the portions of the rich text of the cell. For this purpose, you can use Cell.GetCharacters() and Cell.SetCharacters() methods. These methods will return and accept the array of FontSetting objects which you can use to access and update various properties of font like font name, font color, boldness, etc.
Access and Update the Portions of Rich Text of Cell
The following code demonstrates the usage of Cell.GetCharacters() and Cell.SetCharacters() method using the source excel file which you can download from the provided link. The source excel file has a rich text in the cell A1. It has 3 portions and each portion has a different font. The following code snippet accesses these portions and updates the first portion with a new font name. Finally, it saves the workbook as output excel file. When you will open it, you will find the font of the first portion of the text has changed to “Arial”.
C# code to access and update the portions of Rich Text of Cell
Console output generated by the sample code
Here is the console output of the above sample code using the source excel file.
Before updating the font settings....
Century
Courier New
Verdana
After updating the font settings....
Arial
Courier New
Verdana