Umgang mit Schrifteinstellungen
Das Erscheinungsbild des Textes kann durch Ändern der Schriftarteinstellungen gesteuert werden. Diese Schriftarteinstellungen können Name, Stil, Größe, Farbe und andere Effekte der Schriftarten umfassen, wie unten in der Abbildung gezeigt:
Schrifteinstellungen in Microsoft Excel
Genau wie Microsoft Excel unterstützt auch Aspose.Cells die Konfiguration der Schriftarteinstellungen der Zellen.
Schrifteinstellungen konfigurieren
Aspose.Cells bietet eine Klasse,Arbeitsmappe das stellt eine Microsoft Excel-Datei dar. DasArbeitsmappe Klasse enthält aArbeitsblattsammlung die den Zugriff auf jedes Arbeitsblatt in einer Excel-Datei ermöglicht. Ein Arbeitsblatt wird durch dargestelltArbeitsblattKlasse. DasArbeitsblatt Klasse bietet aCells Sammlung. Jeder Artikel in derCells Sammlung stellt ein Objekt derCellKlasse.
Aspose.Cells bietet dieCell Klasse'setStyle-Methode, mit der die Formatierung einer Zelle festgelegt wird. Auch das Objekt derStil-Klasse stellt Eigenschaften zum Konfigurieren von Schriftarteinstellungen bereit.
Dieser Artikel zeigt, wie Sie:
- Wenden Sie eine bestimmte Schriftart auf Text an.
- Stellen Sie den Text auf fett.
- Legen Sie die Schriftgröße fest.
- Legen Sie die Schriftfarbe fest.
- Text unterstreichen.
- Durchgestrichener Text.
- Text tiefstellen.
- Text hochstellen.
Festlegen des Schriftartnamens
Wenden Sie mithilfe von eine bestimmte Schriftart auf Text in Zellen anSchriftart ObjektName einsetzenEigentum.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(SettingFontName.class) + "data/"; | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Accessing the added worksheet in the Excel file | |
int sheetIndex = workbook.getWorksheets().add(); | |
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex); | |
Cells cells = worksheet.getCells(); | |
// Adding some value to the "A1" cell | |
Cell cell = cells.get("A1"); | |
cell.setValue("Hello Aspose!"); | |
// Setting the font name to "Times New Roman" | |
Style style = cell.getStyle(); | |
Font font = style.getFont(); | |
font.setName("Times New Roman"); | |
cell.setStyle(style); | |
// Saving the modified Excel file in default format | |
workbook.save(dataDir + "SettingFontName_out.xls"); |
Schriftstil auf Fett setzen
Setzen Sie den Text fett, indem Sie das einstellenSchriftart ObjektsetBold Eigentum zuwahr.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the output directory. | |
String outputDir = Utils.Get_OutputDirectory(); | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Adding a new worksheet to the Excel object | |
int i = workbook.getWorksheets().add(); | |
// Obtaining the reference of the newly added worksheet by passing its sheet index | |
Worksheet worksheet = workbook.getWorksheets().get(i); | |
// Accessing the "A1" cell from the worksheet | |
Cell cell = worksheet.getCells().get("A1"); | |
// Adding some value to the "A1" cell | |
cell.putValue("Hello Aspose!"); | |
// Obtaining the style of the cell | |
Style style = cell.getStyle(); | |
// Setting the font weight to bold | |
style.getFont().setBold(true); | |
// Applying the style to the cell | |
cell.setStyle(style); | |
// Saving the Excel file | |
workbook.save(outputDir + "book1.out.xlsx", SaveFormat.XLSX); |
Schriftgröße einstellen
Stellen Sie die Schriftgröße mit einSchriftart ObjektsetSizeEigentum.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(SetFontSize.class) + "data/"; | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Accessing the added worksheet in the Excel file | |
int sheetIndex = workbook.getWorksheets().add(); | |
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex); | |
Cells cells = worksheet.getCells(); | |
// Adding some value to the "A1" cell | |
Cell cell = cells.get("A1"); | |
cell.setValue("Hello Aspose!"); | |
// Setting the font weight to bold | |
Style style = cell.getStyle(); | |
Font font = style.getFont(); | |
font.setSize(14); | |
cell.setStyle(style); | |
cell.setStyle(style); | |
// Saving the modified Excel file in default format | |
workbook.save(dataDir + "SetFontSize_out.xls"); |
Festlegen des Unterstreichungstyps für Schriftarten
Text mit unterstreichenSchriftart ObjektsetUnderline Eigentum. Aspose.Cells bietet verschiedene vordefinierte Schriftarten für Unterstreichungen imFontUnderlineTypeAufzählung.
Unterstreichungstypen für Schriftarten | Beschreibung | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
KEINER | Keine Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
SINGLE | Eine einzelne Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
DOPPELT | Doppelter Unterstrich | ||||||||||||||||||||||||||||||||||||||||||||||||||
BUCHHALTUNG | Eine einzige Buchhaltungsunterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
DOUBLE_ACCOUNTING | Doppelte Buchhaltung unterstreichen | ||||||||||||||||||||||||||||||||||||||||||||||||||
BINDESTRICH | Gestrichelte Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
BINDESTRICH_PUNKT_DOT_HEAVY | Dicker Strich-Punkt-Punkt-Unterstrich | ||||||||||||||||||||||||||||||||||||||||||||||||||
BINDESTRICH_PUNKT_SCHWER | Dicker Strich-Punkt-Unterstrich | ||||||||||||||||||||||||||||||||||||||||||||||||||
DASHED_HEAVY | Dicker gestrichelter Unterstrich | ||||||||||||||||||||||||||||||||||||||||||||||||||
DASH_LONG | Lang gestrichelte Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
BINDESTRICH_LANG_SCHWER | Dicke lange gestrichelte Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
DOT SCHLAGEN | Strich-Punkt-Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
PUNKT_PUNKT_BINDESTRICH | Strich-Punkt-Punkt-Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
GEPUNKTET | Gepunktete Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
DOTTED_HEAVY | Dicke gepunktete Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
SCHWER | Dicke Unterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
WELLE | Welle unterstreichen | ||||||||||||||||||||||||||||||||||||||||||||||||||
WAVY_DOUBLE | Unterstreichen mit doppelter Welle | ||||||||||||||||||||||||||||||||||||||||||||||||||
WELLIG_SCHWER | Schwere Wellenunterstreichung | ||||||||||||||||||||||||||||||||||||||||||||||||||
WÖRTER |
Nur Nicht-Leerzeichen unterstreichen | ||||||||||||||||||||||||||||||||||||||||||||||||||
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
|
Schriftfarbe einstellen
Stellen Sie die Schriftfarbe mit einSchriftart ObjektsetFarbe Eigentum. Wählen Sie eine beliebige Farbe ausFarbe Aufzählung und ordnen Sie der die ausgewählte Farbe zuSchriftart ObjektsetFarbe.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(SetFontColor.class) + "data/"; | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Accessing the added worksheet in the Excel file | |
int sheetIndex = workbook.getWorksheets().add(); | |
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex); | |
Cells cells = worksheet.getCells(); | |
// Adding some value to the "A1" cell | |
Cell cell = cells.get("A1"); | |
cell.setValue("Hello Aspose!"); | |
// Setting the font color to blue | |
Style style = cell.getStyle(); | |
Font font = style.getFont(); | |
font.setColor(Color.getBlue()); | |
cell.setStyle(style); | |
cell.setStyle(style); | |
// Saving the modified Excel file in default format | |
workbook.save(dataDir + "SetFontColor_out.xls"); |
Festlegen des Durchstreichungseffekts für Text
Durchgestrichener Text mit derSchriftart ObjektsetDurchgestrichenEigentum.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(SettingStrikeOutEffect.class) + "data/"; | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Accessing the added worksheet in the Excel file | |
int sheetIndex = workbook.getWorksheets().add(); | |
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex); | |
Cells cells = worksheet.getCells(); | |
// Adding some value to the "A1" cell | |
Cell cell = cells.get("A1"); | |
cell.setValue("Hello Aspose!"); | |
// Setting the strike out effect on the font | |
Style style = cell.getStyle(); | |
Font font = style.getFont(); | |
font.setStrikeout(true); | |
cell.setStyle(style); |
Index einstellen
Machen Sie Text hochgestellt, indem Sie die verwendenSchriftart ObjektsetSubscriptEigentum.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(SetSubscript.class) + "data/"; | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Accessing the added worksheet in the Excel file | |
int sheetIndex = workbook.getWorksheets().add(); | |
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex); | |
Cells cells = worksheet.getCells(); | |
// Adding some value to the "A1" cell | |
Cell cell = cells.get("A1"); | |
cell.setValue("Hello Aspose!"); | |
// Setting subscript effect | |
Style style = cell.getStyle(); | |
Font font = style.getFont(); | |
font.setSubscript(true); | |
cell.setStyle(style); |
Einstellung hochgestellt
Wenden Sie Hochstellung auf Text mit anSchriftart ObjektsetHochgestelltEigentum.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(SetSubscript.class) + "data/"; | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Accessing the added worksheet in the Excel file | |
int sheetIndex = workbook.getWorksheets().add(); | |
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex); | |
Cells cells = worksheet.getCells(); | |
// Adding some value to the "A1" cell | |
Cell cell = cells.get("A1"); | |
cell.setValue("Hello Aspose!"); | |
// Setting superscript effect | |
Style style = cell.getStyle(); | |
Font font = style.getFont(); | |
font.setSuperscript(true); | |
cell.setStyle(style); |