Appliquer des effets de exposant et d indice sur les polices
Contents
[
Hide
]
Aspose.Cells offre la fonctionnalité d’appliquer les effets d’exposant (texte au-dessus de la ligne de base) et d’indice (texte en dessous de la ligne de base) au texte.
Travailler avec l’effet d’exposant et d’indice
Appliquez l’effet d’exposant en définissant la propriété IsSuperscript de l’objet Style.Font sur true. Pour appliquer un indice, définissez la propriété IsSubscript de l’objet Style.Font sur true.
Les exemples de code suivants montrent comment appliquer un exposant et un indice au texte.
Code C# pour appliquer l’effet d’exposant sur le texte
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); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Adding a new worksheet to the Excel object | |
workbook.Worksheets.Add(); | |
// Obtaining the reference of the newly added worksheet by passing its sheet index | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Accessing the "A1" cell from the worksheet | |
Cell cell = worksheet.Cells["A1"]; | |
// Adding some value to the "A1" cell | |
cell.PutValue("Hello"); | |
// Setting the font Superscript | |
Style style = cell.GetStyle(); | |
style.Font.IsSuperscript = true; | |
cell.SetStyle(style); | |
// Saving the Excel file | |
workbook.Save(dataDir+ "Superscript.out.xls", SaveFormat.Auto); |
Code C# pour appliquer l’effet d’indice sur le texte
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); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
// Adding a new worksheet to the Excel object | |
workbook.Worksheets.Add(); | |
// Obtaining the reference of the newly added worksheet by passing its sheet index | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Accessing the "A1" cell from the worksheet | |
Cell cell = worksheet.Cells["A1"]; | |
// Adding some value to the "A1" cell | |
cell.PutValue("Hello"); | |
// Setting the font Subscript | |
Style style = cell.GetStyle(); | |
style.Font.IsSubscript = true; | |
cell.SetStyle(style); | |
// Saving the Excel file | |
workbook.Save(dataDir+ "Subscript.out.xls", SaveFormat.Auto); |