use of org.apache.poi.hssf.record.MMSRecord in project poi by apache.
the class InternalWorkbook method createMMS.
private static MMSRecord createMMS() {
MMSRecord retval = new MMSRecord();
retval.setAddMenuCount((byte) 0);
retval.setDelMenuCount((byte) 0);
return retval;
}
Aggregations