FontSetting Class |
Namespace: Aspose.Cells
The FontSetting type exposes the following members.
Name | Description | |
---|---|---|
![]() | FontSetting | Initializes a new instance of the FontSetting class |
Name | Description | |
---|---|---|
![]() | Font |
Returns the font of this object.
|
![]() | Length |
Gets the length of the characters.
|
![]() | StartIndex |
Gets the start index of the characters.
|
![]() | TextOptions |
Returns the text options.
|
![]() | Type |
Gets the type of text node.
|
Name | Description | |
---|---|---|
![]() | Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | SetWordArtStyle |
Sets the preset WortArt style.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
[C#] //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 Aspose.Cells.Cell cell = worksheet.Cells["A1"]; //Adding some value to the "A1" cell cell.PutValue("Visit Aspose!"); //getting charactor FontSetting charactor = cell.Characters(6, 7); //Setting the font of selected characters to bold charactor.Font.IsBold = true; //Setting the font color of selected characters to blue charactor.Font.Color = Color.Blue; //Saving the Excel file workbook.Save("D:\\book1.xls"); [VB.NET] 'Instantiating a Workbook object Dim workbook As 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 Dim worksheet As Worksheet = workbook.Worksheets(0) 'Accessing the "A1" cell from the worksheet Dim cell As Aspose.Cells.Cell = worksheet.Cells("A1") 'Adding some value to the "A1" cell cell.PutValue("Visit Aspose!") 'getting charactor Dim charactor As FontSetting = cell.Characters(6, 7) 'Setting the font of selected characters to bold charactor.Font.IsBold = True 'Setting the font color of selected characters to blue charactor.Font.Color = Color.Blue 'Saving the Excel file workbook.Save("D:\book1.xls")