Uses of Class
org.apache.poi.ddf.EscherRecord
-
Packages that use EscherRecord Package Description org.apache.poi.ddf This package contains classes for decoding the Microsoft Office Drawing format otherwise known as escher henceforth known in POI as the Dreadful Drawing Format.org.apache.poi.hpbf.model org.apache.poi.hslf.dev org.apache.poi.hslf.record org.apache.poi.hslf.usermodel org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.org.apache.poi.hssf.record Record package contains class representations for XLS binary strutures.org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet modelorg.apache.poi.hwpf.model -
-
Uses of EscherRecord in org.apache.poi.ddf
Subclasses of EscherRecord in org.apache.poi.ddf Modifier and Type Class Description classAbstractEscherOptRecordCommon abstract class forEscherOptRecordandEscherTertiaryOptRecordclassEscherBitmapBlipclassEscherBlipRecordclassEscherBSERecordThe BSE record is related closely to theEscherBlipRecordand stores extra information about the blip.classEscherChildAnchorRecordThe escher child achor record is used to specify the position of a shape under an existing group.classEscherClientAnchorRecordThe escher client anchor specifies which rows and cells the shape is bound to as well as the offsets within those cells.classEscherClientDataRecordThe EscherClientDataRecord is used to store client specific data about the position of a shape within a container.classEscherContainerRecordEscher container records store other escher records as children.classEscherDggRecordThis record defines the drawing groups used for a particular sheet.classEscherDgRecordThis record simply holds the number of shapes in the drawing group and the last shape id used for this drawing group.classEscherMetafileBlipclassEscherOptRecordThe opt record is used to store property values for a shape.classEscherPictBlipclassEscherSpgrRecordThe spgr record defines information about a shape group.classEscherSplitMenuColorsRecordA list of the most recently used colours for the drawings contained in this document.classEscherSpRecordTogether the the EscherOptRecord this record defines some of the basic properties of a shape.classEscherTertiaryOptRecord"The OfficeArtTertiaryFOPT record specifies a table of OfficeArtRGFOPTE properties, as defined in section 2.3.1." -- [MS-ODRAW] -- v20110608; Office Drawing Binary File FormatclassEscherTextboxRecordHolds data from the parent application.classUnknownEscherRecordThis record is used whenever a escher record is encountered that we do not explicitly support.Methods in org.apache.poi.ddf with type parameters of type EscherRecord Modifier and Type Method Description <T extends EscherRecord>
TEscherContainerRecord. getChildById(short recordId)Methods in org.apache.poi.ddf that return EscherRecord Modifier and Type Method Description EscherRecordEscherRecord. clone()Escher records may need to be clonable in the future.EscherRecordDefaultEscherRecordFactory. createRecord(byte[] data, int offset)EscherRecordEscherRecordFactory. createRecord(byte[] data, int offset)Generates an escher record including any children contained under that record.EscherRecordEscherContainerRecord. getChild(int index)EscherRecordEscherRecord. getChild(int index)Returns the indexed child record.Methods in org.apache.poi.ddf that return types with arguments of type EscherRecord Modifier and Type Method Description java.util.List<EscherRecord>EscherContainerRecord. getChildRecords()java.util.List<EscherRecord>EscherRecord. getChildRecords()java.util.List<EscherRecord>UnknownEscherRecord. getChildRecords()java.util.Iterator<EscherRecord>EscherContainerRecord. iterator()protected static java.util.Map<java.lang.Short,java.lang.reflect.Constructor<? extends EscherRecord>>DefaultEscherRecordFactory. recordsToMap(java.lang.Class<?>[] recClasses)Converts from a list of classes into a map that contains the record id as the key and the Constructor in the value part of the map.Methods in org.apache.poi.ddf with parameters of type EscherRecord Modifier and Type Method Description voidEscherContainerRecord. addChildBefore(EscherRecord record, int insertBeforeRecordId)Add a child record before the record with given recordIdvoidEscherContainerRecord. addChildRecord(EscherRecord record)Append a child recordvoidUnknownEscherRecord. addChildRecord(EscherRecord childRecord)voidEscherSerializationListener. afterRecordSerialize(int offset, short recordId, int size, EscherRecord record)Fired after a record has been serialized.voidNullEscherSerializationListener. afterRecordSerialize(int offset, short recordId, int size, EscherRecord record)voidEscherSerializationListener. beforeRecordSerialize(int offset, short recordId, EscherRecord record)Fired before a given escher record is serialized.voidNullEscherSerializationListener. beforeRecordSerialize(int offset, short recordId, EscherRecord record)booleanEscherContainerRecord. removeChildRecord(EscherRecord toBeRemoved)Removes the given escher record from the child listMethod parameters in org.apache.poi.ddf with type arguments of type EscherRecord Modifier and Type Method Description voidEscherContainerRecord. getRecordsById(short recordId, java.util.List<EscherRecord> out)Recursively find records with the specified record IDvoidEscherContainerRecord. setChildRecords(java.util.List<EscherRecord> childRecords)replaces the internal child list with the contents of the supplied childRecordsvoidEscherRecord. setChildRecords(java.util.List<EscherRecord> childRecords)Sets the child records for this record.voidUnknownEscherRecord. setChildRecords(java.util.List<EscherRecord> childRecords) -
Uses of EscherRecord in org.apache.poi.hpbf.model
Methods in org.apache.poi.hpbf.model that return EscherRecord Modifier and Type Method Description EscherRecord[]EscherPart. getEscherRecords() -
Uses of EscherRecord in org.apache.poi.hslf.dev
Methods in org.apache.poi.hslf.dev with parameters of type EscherRecord Modifier and Type Method Description voidSlideShowRecordDumper. printEscherRecord(EscherRecord er, int indent) -
Uses of EscherRecord in org.apache.poi.hslf.record
Subclasses of EscherRecord in org.apache.poi.hslf.record Modifier and Type Class Description classEscherPlaceholderAn atom record that specifies whether a shape is a placeholder shape.classHSLFEscherClientDataRecordAn atom record that specifies whether a shape is a placeholder shape.Methods in org.apache.poi.hslf.record that return EscherRecord Modifier and Type Method Description EscherRecordHSLFEscherRecordFactory. createRecord(byte[] data, int offset)protected EscherRecordPPDrawing. findFirstEscherRecordOfType(RecordTypes type, EscherContainerRecord parent)Methods in org.apache.poi.hslf.record that return types with arguments of type EscherRecord Modifier and Type Method Description java.util.List<EscherRecord>PPDrawing. getEscherRecords()Get access to the underlying Escher Records -
Uses of EscherRecord in org.apache.poi.hslf.usermodel
Methods in org.apache.poi.hslf.usermodel with type parameters of type EscherRecord Modifier and Type Method Description <T extends EscherRecord>
THSLFGroupShape. getEscherChild(int recordId)<T extends EscherRecord>
THSLFShape. getEscherChild(int recordId)static <T extends EscherRecord>
THSLFShape. getEscherChild(EscherContainerRecord owner, int recordId)Helper method to return escher child by record IDstatic <T extends EscherRecord>
THSLFShape. getEscherChild(EscherContainerRecord owner, RecordTypes recordId)<T extends EscherRecord>
THSLFShape. getEscherChild(RecordTypes recordId) -
Uses of EscherRecord in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model that return EscherRecord Modifier and Type Method Description static EscherRecordConvertAnchor. createAnchor(HSSFAnchor userAnchor) -
Uses of EscherRecord in org.apache.poi.hssf.record
Methods in org.apache.poi.hssf.record that return EscherRecord Modifier and Type Method Description EscherRecordAbstractEscherHolderRecord. findFirstWithId(short id)Descends into all our children, returning the first EscherRecord with the given id, or null if none foundEscherRecordAbstractEscherHolderRecord. getEscherRecord(int index)Methods in org.apache.poi.hssf.record that return types with arguments of type EscherRecord Modifier and Type Method Description java.util.List<EscherRecord>AbstractEscherHolderRecord. getEscherRecords()java.util.Map<EscherRecord,Record>EscherAggregate. getShapeToObjMapping()Methods in org.apache.poi.hssf.record with parameters of type EscherRecord Modifier and Type Method Description voidAbstractEscherHolderRecord. addEscherRecord(int index, EscherRecord element)booleanAbstractEscherHolderRecord. addEscherRecord(EscherRecord element)voidEscherAggregate. associateShapeToObjRecord(EscherRecord r, Record objRecord)Associates an escher record to an OBJ record or a TXO record.voidEscherAggregate. removeShapeToObjRecord(EscherRecord rec)Remove echerRecord and associated to it Obj or TextObj record -
Uses of EscherRecord in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return EscherRecord Modifier and Type Method Description protected abstract EscherRecordHSSFAnchor. getEscherAnchor()protected EscherRecordHSSFChildAnchor. getEscherAnchor()protected EscherRecordHSSFClientAnchor. getEscherAnchor() -
Uses of EscherRecord in org.apache.poi.hwpf.model
Methods in org.apache.poi.hwpf.model that return EscherRecord Modifier and Type Method Description EscherRecordEscherRecordHolder. findFirstWithId(short id)Descends into all our children, returning the first EscherRecord with the given id, or null if none foundMethods in org.apache.poi.hwpf.model that return types with arguments of type EscherRecord Modifier and Type Method Description java.util.List<EscherRecord>PICFAndOfficeArtData. getBlipRecords()java.util.List<EscherRecord>EscherRecordHolder. getEscherRecords()
-