Cell içine HTML Zengin Metin ekleme
Contents
[
Hide
]
Aspose.Cells, Microsoft Excel odaklı HTML’in XLS/XLSX formatına dönüştürülmesini destekler. Bunun anlamı, Microsoft Excel tarafından oluşturulan HTML, Aspose.Cells kullanılarak tekrar XLS/XLSX formatına dönüştürülebilir.
Benzer şekilde, bazı basit HTML varsa, Aspose.Cells bunu HTML Zengin Metin’e dönüştürebilir. Aspose.Cells sağlarCell.HtmlString Bu kadar basit bir HTML alabilen ve biçimlendirilmiş hücre metnine dönüştürebilen özellik.
Aşağıdaki kod örneği, hücrenin içine HTML zengin metnin nasıl ekleneceğini gösterir. Lütfen çıktı Excel dosyasının ekran görüntüsüne bakın.
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); | |
Workbook workbook = new Workbook(); | |
Worksheet worksheet = workbook.Worksheets[0]; | |
Cell cell = worksheet.Cells["A1"]; | |
cell.HtmlString = "<Font Style=\"FONT-WEIGHT: bold;FONT-STYLE: italic;TEXT-DECORATION: underline;FONT-FAMILY: Arial;FONT-SIZE: 11pt;COLOR: #ff0000;\">This is simple HTML formatted text.</Font>"; | |
workbook.Save(dataDir + "output_out.xlsx"); |