use of org.apache.poi.hssf.record.PrintGridlinesRecord in project poi by apache.
the class InternalSheet method createPrintGridlines.
/**
* creates the PrintGridlines record and sets it to false (that makes for ugly sheets). As far as I can
* tell this does the same thing as the GridsetRecord
*/
private static PrintGridlinesRecord createPrintGridlines() {
PrintGridlinesRecord retval = new PrintGridlinesRecord();
retval.setPrintGridlines(false);
return retval;
}
Aggregations