1 16 17 package org.apache.poi.hssf.record; 18 19 public class DrawingSelectionRecord extends AbstractEscherHolderRecord 20 { 21 public static final short sid = 0xED; 22 23 public DrawingSelectionRecord() 24 { 25 } 26 27 public DrawingSelectionRecord( short id, short size, byte[] data ) 28 { 29 super( id, size, data ); 30 } 31 32 public DrawingSelectionRecord( short id, short size, byte[] data, int offset ) 33 { 34 super( id, size, data, offset ); 35 } 36 37 protected String getRecordName() 38 { 39 return "MSODRAWINGSELECTION"; 40 } 41 42 public short getSid() 43 { 44 return sid; 45 } 46 } 47 | Popular Tags |