Cell のリッチ テキストの一部にアクセスして更新する
Contents
[
Hide
]
Aspose.Cells では、セルのリッチ テキストの一部にアクセスして更新できます。この目的のために、使用できますCell.GetCharacters()とCell.SetCharacters()メソッド。これらのメソッドは、次の配列を返し、受け入れます。フォント設定フォント名、フォントの色、太さなど、フォントのさまざまなプロパティにアクセスして更新するために使用できるオブジェクト。
Cell のリッチ テキストの一部にアクセスして更新する
次のコードは、Cell.GetCharacters()とCell.SetCharacters()を使用した方法ソースエクセルファイル提供されたリンクからダウンロードできます。ソースの Excel ファイルには、セル A1 にリッチ テキストがあります。 3 つの部分があり、各部分には異なるフォントがあります。次のコード スニペットは、これらの部分にアクセスし、最初の部分を新しいフォント名で更新します。最後に、ワークブックを次のように保存します。出力エクセルファイル.開くと、テキストの最初の部分のフォントが に変更されていることがわかります。「アリエル」.
Cell のリッチ テキストの一部にアクセスして更新するための C# コード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
string inputPath = dataDir + "Sample.xlsx"; | |
string outputPath = dataDir + "Output.out.xlsx"; | |
Workbook workbook = new Workbook(inputPath); | |
Worksheet worksheet = workbook.Worksheets[0]; | |
Cell cell = worksheet.Cells["A1"]; | |
Console.WriteLine("Before updating the font settings...."); | |
FontSetting[] fnts = cell.GetCharacters(); | |
for (int i = 0; i < fnts.Length; i++) | |
{ | |
Console.WriteLine(fnts[i].Font.Name); | |
} | |
// Modify the first FontSetting Font Name | |
fnts[0].Font.Name = "Arial"; | |
// And update it using SetCharacters() method | |
cell.SetCharacters(fnts); | |
Console.WriteLine(); | |
Console.WriteLine("After updating the font settings...."); | |
fnts = cell.GetCharacters(); | |
for (int i = 0; i < fnts.Length; i++) | |
{ | |
Console.WriteLine(fnts[i].Font.Name); | |
} | |
// Save workbook | |
workbook.Save(outputPath); |
サンプル コードによって生成されたコンソール出力
以下は、上記のサンプル コードを使用したコンソール出力です。ソースエクセルファイル.
Before updating the font settings....
Century
Courier New
Verdana
After updating the font settings....
Arial
Courier New
Verdana