All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspose.cells.FontSetting.html Maven / Gradle / Ivy






FontSetting




com.aspose.cells
Class FontSetting

java.lang.Object
    extended by com.aspose.cells.FontSetting
Direct Known Subclasses:
TextParagraph

public class FontSetting 
extends java.lang.Object

Represents a range of characters within the cell text.

Example:

//Instantiating a Workbook object
Workbook workbook = new Workbook();

//Adding a new worksheet to the Excel object
workbook.getWorksheets().add();

//Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.getWorksheets().get(0);

//Accessing the "A1" cell from the worksheet
Cell cell = worksheet.getCells().get("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.getFont().setBold(true);

//Setting the font color of selected characters to blue
charactor.getFont().setColor(Color.getBlue());

//Saving the Excel file
workbook.save("D:\\book1.xls");


Constructor Summary
FontSetting(int startIndex, int length, WorksheetCollection sheets)
          
 
Property Getters/Setters Summary
FontgetFont()
           Returns the font of this object.
intgetLength()
           Gets the length of the characters.
intgetStartIndex()
           Gets the start index of the characters.
TextOptionsgetTextOptions()
           Returns the text options.
intgetType()
           Gets the type of text node. The value of the property is TextNodeType integer constant.
 
Method Summary
voidsetWordArtStyle(int style)
           Sets the preset WordArt style.
 

Constructor Detail

FontSetting

public FontSetting(int startIndex, int length, WorksheetCollection sheets)
Parameters:
startIndex -
length -
sheets -

Property Getters/Setters Detail

getType

public int getType()
Gets the type of text node. The value of the property is TextNodeType integer constant.

getStartIndex

public int getStartIndex()
Gets the start index of the characters.

getLength

public int getLength()
Gets the length of the characters.

getFont

public Font getFont()
Returns the font of this object.

getTextOptions

public TextOptions getTextOptions()
Returns the text options.

Method Detail

setWordArtStyle

public void setWordArtStyle(int style)
                    throws java.lang.Exception
Sets the preset WordArt style. Only for the text of shape/chart.
Parameters:
style - A PresetWordArtStyle value. The preset WordArt style.

See Also:
          Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
          Aspose.Cells Support Forum - our preferred method of support.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy