Package org.apache.poi.xssf.usermodel
Class XSSFOddHeader
- java.lang.Object
-
- org.apache.poi.xssf.usermodel.extensions.XSSFHeaderFooter
-
- org.apache.poi.xssf.usermodel.XSSFOddHeader
-
- All Implemented Interfaces:
Header,HeaderFooter
public class XSSFOddHeader extends XSSFHeaderFooter implements Header
Odd page header value. Corresponds to odd printed pages. Odd page(s) in the sheet may not be printed, for example, if the print area is specified to be a range such that it falls outside an odd page's scope.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedXSSFOddHeader(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter headerFooter)Create an instance of XSSFOddHeader from the supplied XML bean
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetText()Get the content text representing this headervoidsetText(String text)Set a text for the header.-
Methods inherited from class org.apache.poi.xssf.usermodel.extensions.XSSFHeaderFooter
areFieldsStripped, getCenter, getHeaderFooter, getLeft, getRight, getValue, setAreFieldsStripped, setCenter, setLeft, setRight, stripFields
-
-
-
-
Constructor Detail
-
XSSFOddHeader
protected XSSFOddHeader(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter headerFooter)
Create an instance of XSSFOddHeader from the supplied XML bean- See Also:
XSSFSheet.getOddHeader()
-
-
Method Detail
-
getText
public String getText()
Get the content text representing this header- Specified by:
getTextin classXSSFHeaderFooter- Returns:
- text
-
setText
public void setText(String text)
Set a text for the header. If null unset the value- Specified by:
setTextin classXSSFHeaderFooter- Parameters:
text- - a string representing the header.- See Also:
to see how to create a string with Header/Footer Formatting Syntax
-
-