mirror of https://github.com/apache/poi.git
Cleanup documentation of EscherChildAnchorRecord and EscherClientAnchorRecord
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1887391 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cee9eb7e2b
commit
c05dbedbc5
|
@ -25,10 +25,12 @@ import org.apache.poi.util.GenericRecordUtil;
|
|||
import org.apache.poi.util.LittleEndian;
|
||||
|
||||
/**
|
||||
* The escher child achor record is used to specify the position of a shape under an
|
||||
* existing group. The first level of shape records use a EscherClientAnchor record instead.
|
||||
* The escher child anchor record is used to specify the position of a shape under an
|
||||
* existing group.
|
||||
* <p>
|
||||
* The first level of shape records use a {@link EscherClientAnchorRecord} instead.
|
||||
*
|
||||
* @see EscherChildAnchorRecord
|
||||
* @see EscherClientAnchorRecord
|
||||
*/
|
||||
public class EscherChildAnchorRecord extends EscherRecord {
|
||||
public static final short RECORD_ID = EscherRecordTypes.CHILD_ANCHOR.typeID;
|
||||
|
|
|
@ -29,7 +29,8 @@ import org.apache.poi.util.LittleEndian;
|
|||
* The escher client anchor specifies which rows and cells the shape is bound to as well as
|
||||
* the offsets within those cells. Each cell is 1024 units wide by 256 units long regardless
|
||||
* of the actual size of the cell. The EscherClientAnchorRecord only applies to the top-most
|
||||
* shapes. Shapes contained in groups are bound using the EscherChildAnchorRecords.
|
||||
* shapes. Shapes contained in groups are bound using the EscherChildAnchorRecords. Referred to as an
|
||||
* {@code OfficeArtClientAnchor} by {@code [MS-PPT] - v20210216}.
|
||||
*
|
||||
* @see EscherChildAnchorRecord
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue