Ändern der Schriftart und Farbe einer Cell
Contents
[
Hide
]
In diesem Thema besprechen wir das Ändern der Schriftart und Schriftfarbe einer Zelle. Diese Funktion bietet Entwicklern eine umfassendere Kontrolle über Arbeitsblätter. Mit dieser Funktion können Entwickler die Schriftart und Farbe jeder gewünschten Zelle anpassen.
Ändern der Schriftart und Farbe einer Cell
Um die Schriftart und Farbe einer Zelle mit Aspose.Cells.GridDesktop zu ändern, gehen Sie bitte wie folgt vor:
- Greifen Sie beliebig zuArbeitsblatt
- Zugriff aCell dessen Schriftart und Farbe geändert werden soll
- Erstellen Sie eine angepassteSchriftart
- Stellen Sie die einSchriftart desCell zum Maßgeschneiderten
- Endlich einstellenSchriftfarbe desCell zu jedem gewünschtenFarbe
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 | |
// Accessing the worksheet of the Grid that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
// Accessing a cell using its name | |
GridCell cell = sheet.Cells["A1"]; | |
// Creating a customized Font object | |
Font font = new Font("Arial", 10, FontStyle.Bold); | |
// Setting the font of the cell to the customized Font object | |
cell.SetFont(font); | |
// Setting the font color of the cell to Blue | |
cell.SetFontColor(Color.Blue); |
Wenn Sie nur Informationen über die Schriftart oder Schriftfarbe der Zelle benötigen, können Sie auch verwendenGetFont undGetFontColor Methoden der Zelle.