use of org.apache.poi.hslf.record.CString in project poi by apache.
the class HeadersFooters method setFootersText.
/**
* Sets footers's text
*
* @param text footers's text
*/
public void setFootersText(String text) {
setFooterVisible(true);
CString cs = _container.getFooterAtom();
if (cs == null) {
cs = _container.addFooterAtom();
}
cs.setText(text);
}
Aggregations