Description: Shows where the Interface Records end (MMS) (has no fields)
REFERENCE: PG 324 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
Constructs an InterfaceEnd record and sets its fields appropriately.paramid id must be 0xe2 or an exception will be throw upon validationparamsize the size of the data area of the recordparamdata data of the record (should not contain sid/len) super(in);
super(in);
return 4;
return sid;
LittleEndian.putShort(data, 0 + offset, sid); LittleEndian.putShort(data, 2 + offset, (( short ) 0x00)); // 0 bytes (4 total) return getRecordSize();
StringBuffer buffer = new StringBuffer(); buffer.append("[INTERFACEEND]\n"); buffer.append("[/INTERFACEEND]\n"); return buffer.toString();
if (id != sid) { throw new RecordFormatException("NOT A INTERFACEEND RECORD"); }