Package org.apache.poi.hssf.usermodel
Class HSSFCreationHelper
java.lang.Object
org.apache.poi.hssf.usermodel.HSSFCreationHelper
- All Implemented Interfaces:
CreationHelper
-
Method Summary
Modifier and TypeMethodDescriptioncreateAreaReference(String reference) Creates an AreaReference.createAreaReference(CellReference topLeft, CellReference bottomRight) Creates an area ref from a pair of Cell References..Creates a HSSFClientAnchor.Creates a new DataFormat instanceCreates a XSSF-style Color object, used for extended sheet formattings and conditional formattingsCreates a HSSFFormulaEvaluator, the object that evaluates formula cells.createHyperlink(HyperlinkType type) Creates a new Hyperlink, of the given typecreateRichTextString(String text) Creates a new RichTextString instance
-
Method Details
-
createRichTextString
Description copied from interface:CreationHelperCreates a new RichTextString instance- Specified by:
createRichTextStringin interfaceCreationHelper- Parameters:
text- The text to initialise the RichTextString with
-
createDataFormat
Description copied from interface:CreationHelperCreates a new DataFormat instance- Specified by:
createDataFormatin interfaceCreationHelper
-
createHyperlink
Description copied from interface:CreationHelperCreates a new Hyperlink, of the given type- Specified by:
createHyperlinkin interfaceCreationHelper
-
createExtendedColor
Description copied from interface:CreationHelperCreates a XSSF-style Color object, used for extended sheet formattings and conditional formattings- Specified by:
createExtendedColorin interfaceCreationHelper
-
createFormulaEvaluator
Creates a HSSFFormulaEvaluator, the object that evaluates formula cells.- Specified by:
createFormulaEvaluatorin interfaceCreationHelper- Returns:
- a HSSFFormulaEvaluator instance
-
createClientAnchor
Creates a HSSFClientAnchor. Use this object to position drawing object in a sheet- Specified by:
createClientAnchorin interfaceCreationHelper- Returns:
- a HSSFClientAnchor instance
- See Also:
-
createAreaReference
Creates an AreaReference.- Specified by:
createAreaReferencein interfaceCreationHelper- Parameters:
reference- cell reference- Returns:
- an AreaReference instance
-
createAreaReference
Creates an area ref from a pair of Cell References..- Specified by:
createAreaReferencein interfaceCreationHelper- Parameters:
topLeft- cell referencebottomRight- cell reference- Returns:
- an AreaReference instance
-