com.aspose.words

Class ShapeBase

  • All Implemented Interfaces:
    java.lang.Iterable, java.lang.Cloneable
    Direct Known Subclasses:
    GroupShape, Shape
    public abstract class ShapeBase 
    extends CompositeNode

Base class for objects in the drawing layer, such as an AutoShape, freeform, OLE object, ActiveX control, or picture.

This is an abstract class. The two derived classes that you can instantiate are Shape and GroupShape.

A shape is a node in the document tree.

If the shape is a child of a Paragraph object, then the shape is said to be "top-level". Top-level shapes are measured and positioned in points.

A shape can also occur as a child of a GroupShape object when several shapes are grouped. Child shapes of a group shape are positioned in the coordinate space and units defined by the CoordSize and CoordOrigin properties of the parent group shape.

A shape can be positioned inline with text or floating. The positioning method is controlled using the WrapType property.

When a shape is floating, it is positioned relative to something (e.g the current paragraph, the margin or the page). The relative positioning of the shape is specified using the RelativeHorizontalPosition and RelativeVerticalPosition properties.

A floating shape be positioned explicitly using the Left and Top properties or aligned relative to some other object using the HorizontalAlignment and VerticalAlignment properties.

Example:

Shows how to insert a floating image in the middle of a page.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// By default, the image is inline
Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");

// Make the image float, put it behind text and center on the page
shape.setWrapType(WrapType.NONE);
shape.setBehindText(true);
shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
shape.setVerticalAlignment(VerticalAlignment.CENTER);

doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");
See Also:
Shape, GroupShape

Property Getters/Setters Summary
booleangetAllowOverlap()
void
setAllowOverlap(booleanvalue)
           Gets or sets a value that specifies whether this shape can overlap other shapes.
java.lang.StringgetAlternativeText()
void
setAlternativeText(java.lang.Stringvalue)
           Defines alternative text to be displayed instead of a graphic.
booleangetAnchorLocked()
void
setAnchorLocked(booleanvalue)
           Specifies whether the shape's anchor is locked.
booleangetAspectRatioLocked()
void
setAspectRatioLocked(booleanvalue)
           Specifies whether the shape's aspect ratio is locked.
booleangetBehindText()
void
setBehindText(booleanvalue)
           Specifies whether the shape is below or above text.
doublegetBottom()
Gets the position of the bottom edge of the containing block of the shape.
java.awt.geom.Rectangle2D.FloatgetBounds()
void
setBounds(java.awt.geom.Rectangle2D.Floatvalue)
           Gets or sets the location and size of the containing block of the shape.
java.awt.geom.Rectangle2D.FloatgetBoundsInPoints()
Gets the location and size of the containing block of the shape in points, relative to the anchor of the topmost shape.
java.awt.geom.Rectangle2D.FloatgetBoundsWithEffects()
Gets final extent that this shape object has after applying drawing effects. Value is measured in points.
booleancanHaveImage()
Returns true if the shape type allows the shape to have an image.
NodeCollectiongetChildNodes()
Gets all immediate child nodes of this node.
java.awt.PointgetCoordOrigin()
void
setCoordOrigin(java.awt.Pointvalue)
           The coordinates at the top-left corner of the containing block of this shape.
java.awt.DimensiongetCoordSize()
void
setCoordSize(java.awt.Dimensionvalue)
           The width and height of the coordinate space inside the containing block of this shape.
intgetCount()
Gets the number of immediate children of this node.
doublegetDistanceBottom()
void
setDistanceBottom(doublevalue)
           Returns or sets the distance (in points) between the document text and the bottom edge of the shape.
doublegetDistanceLeft()
void
setDistanceLeft(doublevalue)
           Returns or sets the distance (in points) between the document text and the left edge of the shape.
doublegetDistanceRight()
void
setDistanceRight(doublevalue)
           Returns or sets the distance (in points) between the document text and the right edge of the shape.
doublegetDistanceTop()
void
setDistanceTop(doublevalue)
           Returns or sets the distance (in points) between the document text and the top edge of the shape.
DocumentBasegetDocument()
Gets the document to which this node belongs.
NodegetFirstChild()
Gets the first child of the node.
intgetFlipOrientation()
void
           Switches the orientation of a shape. The value of the property is FlipOrientation integer constant.
FontgetFont()
Provides access to the font formatting of this object.
booleanhasChildNodes()
Returns true if this node has any child nodes.
doublegetHeight()
void
setHeight(doublevalue)
           Gets or sets the height of the containing block of the shape.
intgetHorizontalAlignment()
void
           Specifies how the shape is positioned horizontally. The value of the property is HorizontalAlignment integer constant.
java.lang.StringgetHRef()
void
setHRef(java.lang.Stringvalue)
           Gets or sets the full hyperlink address for a shape.
booleanisComposite()
Returns true as this node can have child nodes.
booleanisDeleteRevision()
Returns true if this object was deleted in Microsoft Word while change tracking was enabled.
booleanisGroup()
Returns true if this is a group shape.
booleanisHorizontalRule()
Returns true if this shape is a horizontal rule.
booleanisImage()
Returns true if this shape is an image shape.
booleanisInline()
A quick way to determine if this shape is positioned inline with text.
booleanisInsertRevision()
Returns true if this object was inserted in Microsoft Word while change tracking was enabled.
booleanisLayoutInCell()
void
isLayoutInCell(booleanvalue)
           Gets or sets a flag indicating whether the shape is displayed inside a table or outside of it.
booleanisMoveFromRevision()
Returns true if this object was moved (deleted) in Microsoft Word while change tracking was enabled.
booleanisMoveToRevision()
Returns true if this object was moved (inserted) in Microsoft Word while change tracking was enabled.
booleanisSignatureLine()
Indicates that shape is a SignatureLine.
booleanisTopLevel()
Returns true if this shape is not a child of a group shape.
booleanisWordArt()
Returns true if this shape is a WordArt object.
NodegetLastChild()
Gets the last child of the node.
doublegetLeft()
void
setLeft(doublevalue)
           Gets or sets the position of the left edge of the containing block of the shape.
bytegetMarkupLanguage()
Gets MarkupLanguage used for this graphic object. The value of the property is ShapeMarkupLanguage integer constant.
java.lang.StringgetName()
void
setName(java.lang.Stringvalue)
           Gets or sets the optional shape name.
NodegetNextSibling()
Gets the node immediately following this node.
abstract intgetNodeType()
Gets the type of this node. The value of the property is NodeType integer constant.
CompositeNodegetParentNode()
Gets the immediate parent of this node.
ParagraphgetParentParagraph()
Returns the immediate parent paragraph.
NodegetPreviousSibling()
Gets the node immediately preceding this node.
RangegetRange()
Returns a Range object that represents the portion of a document that is contained in this node.
intgetRelativeHorizontalPosition()
void
           Specifies relative to what the shape is positioned horizontally. The value of the property is RelativeHorizontalPosition integer constant.
intgetRelativeVerticalPosition()
void
           Specifies relative to what the shape is positioned vertically. The value of the property is RelativeVerticalPosition integer constant.
doublegetRight()
Gets the position of the right edge of the containing block of the shape.
doublegetRotation()
void
setRotation(doublevalue)
           Defines the angle (in degrees) that a shape is rotated. Positive value corresponds to clockwise rotation angle.
java.lang.StringgetScreenTip()
void
setScreenTip(java.lang.Stringvalue)
           Defines the text displayed when the mouse pointer moves over the shape.
intgetShapeType()
Gets the shape type. The value of the property is ShapeType integer constant.
java.awt.DimensiongetSizeInPoints()
Gets the size of the shape in points.
java.lang.StringgetTarget()
void
setTarget(java.lang.Stringvalue)
           Gets or sets the target frame for the shape hyperlink.
java.lang.StringgetTitle()
void
setTitle(java.lang.Stringvalue)
           Gets or sets the title (caption) of the current shape object.
doublegetTop()
void
setTop(doublevalue)
           Gets or sets the position of the top edge of the containing block of the shape.
intgetVerticalAlignment()
void
           Specifies how the shape is positioned vertically. The value of the property is VerticalAlignment integer constant.
doublegetWidth()
void
setWidth(doublevalue)
           Gets or sets the width of the containing block of the shape.
intgetWrapSide()
void
setWrapSide(intvalue)
           Specifies how the text is wrapped around the shape. The value of the property is WrapSide integer constant.
intgetWrapType()
void
setWrapType(intvalue)
           Defines whether the shape is inline or floating. For floating shapes defines the wrapping mode for text around the shape. The value of the property is WrapType integer constant.
intgetZOrder()
void
setZOrder(intvalue)
           Determines the display order of overlapping shapes.
 
Method Summary
abstract booleanaccept(DocumentVisitor visitor)
Accepts a visitor.
java.awt.geom.Rectangle2D.FloatadjustWithEffects(java.awt.geom.Rectangle2D.Float source)
Adds to the source rectangle values of the effect extent and returns the final rectangle.
NodeappendChild(Node newChild)
Adds the specified node to the end of the list of child nodes for this node.
NodedeepClone(boolean isCloneChildren)
Creates a duplicate of the node.
java.lang.ObjectfetchInheritedShapeAttr(int key)
Deprecated. Reserved for internal use.
java.lang.ObjectfetchShapeAttr(int key)
Deprecated. Reserved for internal use.
CompositeNodegetAncestor(int ancestorType)
Gets the first ancestor of the specified NodeType.
CompositeNodegetAncestor(java.lang.Class ancestorType)
Gets the first ancestor of the specified object type.
NodegetChild(int nodeType, int index, boolean isDeep)
Returns an Nth child node that matches the specified type.
NodeCollectiongetChildNodes(int nodeType, boolean isDeep)
Returns a live collection of child nodes that match the specified type.
java.lang.ObjectgetDirectShapeAttr(int key)
Deprecated. Reserved for internal use.
ShapeRenderergetShapeRenderer()
Creates and returns an object that can be used to render this shape into an image.
java.awt.geom.Point2D.FloatgetSizeInPoints()
Gets the size of the shape in points.
java.lang.StringgetText()
Gets the text of this node and of all its children.
intindexOf(Node child)
Returns the index of the specified child node in the child node array.
NodeinsertAfter(Node newChild, Node refChild)
Inserts the specified node immediately after the specified reference node.
NodeinsertBefore(Node newChild, Node refChild)
Inserts the specified node immediately before the specified reference node.
java.util.Iterator<Node>iterator()
Provides support for the for each style iteration over the child nodes of this node.
java.awt.geom.Point2D.FloatlocalToParent(java.awt.geom.Point2D.Float value)
Converts a value from the local coordinate space into the coordinate space of the parent shape.
NodenextPreOrder(Node rootNode)
Gets next node according to the pre-order tree traversal algorithm.
NodeprependChild(Node newChild)
Adds the specified node to the beginning of the list of child nodes for this node.
NodepreviousPreOrder(Node rootNode)
Gets the previous node according to the pre-order tree traversal algorithm.
voidremove()
Removes itself from the parent.
voidremoveAllChildren()
Removes all the child nodes of the current node.
NoderemoveChild(Node oldChild)
Removes the specified child node.
voidremoveShapeAttr(int key)
Deprecated. Reserved for internal use.
voidremoveSmartTags()
Removes all SmartTag descendant nodes of the current node.
NodeListselectNodes(java.lang.String xpath)
Selects a list of nodes matching the XPath expression.
NodeselectSingleNode(java.lang.String xpath)
Selects the first Node that matches the XPath expression.
voidsetShapeAttr(int key, java.lang.Object value)
Deprecated. Reserved for internal use.
java.lang.StringtoString(SaveOptions saveOptions)
Exports the content of the node into a string using the specified save options.
java.lang.StringtoString(int saveFormat)
Exports the content of the node into a string in the specified format.
 

    • Property Getters/Setters Detail

      • getAllowOverlap/setAllowOverlap

        public boolean getAllowOverlap() / public void setAllowOverlap(boolean value)
        
        Gets or sets a value that specifies whether this shape can overlap other shapes.

        This property affects behavior of the shape in Microsoft Word. Aspose.Words ignores the value of this property.

        This property is applicable only to top level shapes.

        The default value is true.

        Example:

        Shows how to work with floating tables properties.
        Document doc = new Document(getMyDir() + "Table wrapped by text.docx");
        
        Table table = (Table) doc.getChild(NodeType.TABLE, 0, true);
        
        if (table.getTextWrapping() == TextWrapping.AROUND) {
            Assert.assertEquals(TextWrapping.AROUND, table.getTextWrapping());
            Assert.assertEquals(RelativeHorizontalPosition.MARGIN, table.getHorizontalAnchor());
            Assert.assertEquals(RelativeVerticalPosition.PARAGRAPH, table.getVerticalAnchor());
            Assert.assertEquals(false, table.getAllowOverlap());
        
            // Only Margin, Page, Column available in RelativeHorizontalPosition for HorizontalAnchor setter
            // The ArgumentException will be thrown for any other values
            table.setHorizontalAnchor(RelativeHorizontalPosition.COLUMN);
            // Only Margin, Page, Paragraph available in RelativeVerticalPosition for VerticalAnchor setter
            // The ArgumentException will be thrown for any other values
            table.setVerticalAnchor(RelativeVerticalPosition.PAGE);
        
        }
      • getAlternativeText/setAlternativeText

        public java.lang.String getAlternativeText() / public void setAlternativeText(java.lang.String value)
        
        Defines alternative text to be displayed instead of a graphic.

        The default value is an empty string.

        Example:

        Shows how to insert shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a cube and set its name
        Shape shape = builder.insertShape(ShapeType.CUBE, 150.0, 150.0);
        shape.setName("MyCube");
        
        // We can also set the alt text like this
        // This text will be found in Format AutoShape > Alt Text
        shape.setAlternativeText("Alt text for MyCube.");
        
        // Insert a text box
        shape = builder.insertShape(ShapeType.TEXT_BOX, 300.0, 50.0);
        shape.getFont().setName("Times New Roman");
        
        // Move the builder into the text box and write text
        builder.moveTo(shape.getLastParagraph());
        builder.write("Hello world!");
        
        // Move the builder out of the text box back into the main document
        builder.moveTo(shape.getParentParagraph());
        
        // Insert a shape with an image
        shape = builder.insertImage(getImageDir() + "Logo.jpg");
        Assert.assertTrue(shape.canHaveImage());
        Assert.assertTrue(shape.hasImage());
        
        // Rotate the image
        shape.setRotation(45.0);
        
        doc.save(getArtifactsDir() + "Shape.Insert.docx");
      • getAnchorLocked/setAnchorLocked

        public boolean getAnchorLocked() / public void setAnchorLocked(boolean value)
        
        Specifies whether the shape's anchor is locked.

        The default value is false.

        Has effect only for top level shapes.

        This property affects behavior of the shape's anchor in Microsoft Word. When the anchor is not locked, moving the shape in Microsoft Word can move the shape's anchor too.

        Example:

        Shows how to create and work with a group of shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        GroupShape group = new GroupShape(doc);
        
        // Every GroupShape by default is a top level floating shape
        Assert.assertTrue(group.isGroup());
        Assert.assertTrue(group.isTopLevel());
        Assert.assertEquals(WrapType.NONE, group.getWrapType());
        
        // Top level shapes can have this property changed
        group.setAnchorLocked(true);
        
        // Set the XY coordinates of the shape group and the size of its containing block, as it appears on the page
        group.setBounds(new Rectangle2D.Float(100f, 50f, 200f, 100f));
        
        // Set the scale of the inner coordinates of the shape group
        // These values mean that the bottom right corner of the 200x100 outer block we set before
        // will be at x = 2000 and y = 1000, or 2000 units from the left and 1000 units from the top
        group.setCoordSize(new Dimension(2000, 1000));
        
        // The coordinate origin of a shape group is x = 0, y = 0 by default, which is the top left corner
        // If we insert a child shape and set its distance from the left to 2000 and the distance from the top to 1000,
        // its origin will be at the bottom right corner of the shape group
        // We can offset the coordinate origin by setting the CoordOrigin attribute
        // In this instance, we move the origin to the centre of the shape group
        group.setCoordOrigin(new Point(-1000, -500));
        
        // Populate the shape group with child shapes
        // First, insert a rectangle
        Shape subShape = new Shape(doc, ShapeType.RECTANGLE);
        subShape.setWidth(500.0);
        subShape.setHeight(700.0);
        
        // Place its top left corner at the parent group's coordinate origin, which is currently at its centre
        subShape.setLeft(0.0);
        subShape.setTop(0.0);
        
        // Add the rectangle to the group
        group.appendChild(subShape);
        
        // Insert a triangle
        subShape = new Shape(doc, ShapeType.TRIANGLE);
        subShape.setWidth(400.0);
        subShape.setHeight(400.0);
        
        // Place its origin at the bottom right corner of the group
        subShape.setLeft(1000.0);
        subShape.setTop(500.0);
        
        // The offset between this child shape and parent group can be seen here
        Assert.assertEquals(subShape.localToParent(new Point2D.Float(0f, 0f)), new Point2D.Float(1000f, 500f));
        
        // Add the triangle to the group
        group.appendChild(subShape);
        
        // Child shapes of a group shape are not top level
        Assert.assertFalse(subShape.isTopLevel());
        
        // Finally, insert the group into the document and save
        builder.insertNode(group);
        doc.save(getArtifactsDir() + "Shape.InsertGroupShape.docx");
      • getAspectRatioLocked/setAspectRatioLocked

        public boolean getAspectRatioLocked() / public void setAspectRatioLocked(boolean value)
        
        Specifies whether the shape's aspect ratio is locked.

        The default value depends on the ShapeType, for the ShapeType.Image it is true but for the other shape types it is false.

        Has effect for top level shapes only.

        Example:

        Shows how to set "AspectRatioLocked" for the shape object.
        Document doc = new Document(getMyDir() + "ActiveX controls.docx");
        
        // Get shape object from the document and set AspectRatioLocked(it is possible to get/set AspectRatioLocked for child shapes (mimic MS Word behavior), 
        // but AspectRatioLocked has effect only for top level shapes!)
        Shape shape = (Shape) doc.getChild(NodeType.SHAPE, 0, true);
        shape.setAspectRatioLocked(isLocked);
      • getBehindText/setBehindText

        public boolean getBehindText() / public void setBehindText(boolean value)
        
        Specifies whether the shape is below or above text.

        Has effect only for top level shapes.

        The default value is false.

        Example:

        Shows how to insert a floating image in the middle of a page.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        shape.setBehindText(true);
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
        shape.setVerticalAlignment(VerticalAlignment.CENTER);
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");
        See Also:
        ZOrder
      • getBottom

        public double getBottom()
        
        Gets the position of the bottom edge of the containing block of the shape.

        For a top-level shape, the value is in points and relative to the shape anchor.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        Example:

        Shows how to insert a floating image and specify its position and size.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        
        // Make position relative to the page
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        
        // Set the shape's coordinates, from the top left corner of the page
        shape.setLeft(100.0);
        shape.setTop(80.0);
        
        // Set the shape's height
        shape.setHeight(125.0);
        
        // The width will be scaled to the height and the dimensions of the real image
        Assert.assertEquals(shape.getWidth(), 125.0);
        
        // The Bottom and Right members contain the locations of the bottom and right edges of the image
        Assert.assertEquals(shape.getBottom(), shape.getTop() + shape.getHeight());
        Assert.assertEquals(shape.getRight(), shape.getLeft() + shape.getWidth());
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPositionSize.docx");
      • getBounds/setBounds

        public java.awt.geom.Rectangle2D.Float getBounds() / public void setBounds(java.awt.geom.Rectangle2D.Float value)
        
        Gets or sets the location and size of the containing block of the shape. Ignores aspect ratio lock upon setting.

        For a top-level shape, the value is in points and relative to the shape anchor.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        Example:

        Shows how to create line shapes and set specific location and size.
        Document doc = new Document();
        
        // The lines will cross the whole page
        float pageWidth = (float) doc.getFirstSection().getPageSetup().getPageWidth();
        float pageHeight = (float) doc.getFirstSection().getPageSetup().getPageHeight();
        
        // This line goes from top left to bottom right by default
        Shape lineA = new Shape(doc, ShapeType.LINE);
        {
            lineA.setBounds(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight));
            lineA.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            lineA.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        }
        
        Assert.assertEquals(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight), lineA.getBoundsInPoints());
        
        // This line goes from bottom left to top right because we flipped it
        Shape lineB = new Shape(doc, ShapeType.LINE);
        {
            lineB.setBounds(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight));
            lineB.setFlipOrientation(FlipOrientation.HORIZONTAL);
            lineB.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            lineB.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        }
        
        Assert.assertEquals(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight), lineB.getBoundsInPoints());
        
        // Add lines to the document
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineB);
        
        doc.save(getArtifactsDir() + "Shape.LineFlipOrientation.docx");
      • getBoundsInPoints

        public java.awt.geom.Rectangle2D.Float getBoundsInPoints()
        
        Gets the location and size of the containing block of the shape in points, relative to the anchor of the topmost shape.

        Example:

        Shows how to create line shapes and set specific location and size.
        Document doc = new Document();
        
        // The lines will cross the whole page
        float pageWidth = (float) doc.getFirstSection().getPageSetup().getPageWidth();
        float pageHeight = (float) doc.getFirstSection().getPageSetup().getPageHeight();
        
        // This line goes from top left to bottom right by default
        Shape lineA = new Shape(doc, ShapeType.LINE);
        {
            lineA.setBounds(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight));
            lineA.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            lineA.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        }
        
        Assert.assertEquals(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight), lineA.getBoundsInPoints());
        
        // This line goes from bottom left to top right because we flipped it
        Shape lineB = new Shape(doc, ShapeType.LINE);
        {
            lineB.setBounds(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight));
            lineB.setFlipOrientation(FlipOrientation.HORIZONTAL);
            lineB.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            lineB.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        }
        
        Assert.assertEquals(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight), lineB.getBoundsInPoints());
        
        // Add lines to the document
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineB);
        
        doc.save(getArtifactsDir() + "Shape.LineFlipOrientation.docx");
      • getBoundsWithEffects

        public java.awt.geom.Rectangle2D.Float getBoundsWithEffects()
        
        Gets final extent that this shape object has after applying drawing effects. Value is measured in points.

        Example:

        Shows how to check how a shape's bounds are affected by shape effects.
        // Open a document that contains two shapes and get its shape collection
        Document doc = new Document(getMyDir() + "Shape shadow effect.docx");
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(shapes.getCount(), 2);
        
        Shape firstShape = (Shape) shapes.get(0);
        Shape secondShape = (Shape) shapes.get(1);
        
        // The two shapes are identical in terms of dimensions and shape type
        Assert.assertEquals(secondShape.getWidth(), firstShape.getWidth());
        Assert.assertEquals(secondShape.getHeight(), firstShape.getHeight());
        Assert.assertEquals(secondShape.getShapeType(), firstShape.getShapeType());
        
        // However, the first shape has no effects, while the second one has a shadow and thick outline
        Assert.assertEquals(firstShape.getStrokeWeight(), 0.0);
        Assert.assertEquals(secondShape.getStrokeWeight(), 20.0);
        Assert.assertFalse(firstShape.getShadowEnabled());
        Assert.assertTrue(secondShape.getShadowEnabled());
        
        // These effects make the size of the second shape's silhouette bigger than that of the first
        // Even though the size of the rectangle that shows up when we click on these shapes in Microsoft Word is the same,
        // the practical outer bounds of the second shape are affected by the shadow and outline and are bigger
        // We can use the AdjustWithEffects method to see exactly how much bigger they are
        
        // Create a RectangleF object, which represents a rectangle, which we could potentially use as the coordinates and bounds for a shape
        Rectangle2D.Float rectangleF = new Rectangle2D.Float(200f, 200f, 1000f, 1000f);
        
        // Run this method to get the size of the rectangle adjusted for all of our shape's effects
        Rectangle2D.Float rectangleFOut = firstShape.adjustWithEffects(rectangleF);
        
        // Since the shape has no border-changing effects, its boundary dimensions are unaffected
        Assert.assertEquals(rectangleFOut.getX(), 200.0);
        Assert.assertEquals(rectangleFOut.getY(), 200.0);
        Assert.assertEquals(rectangleFOut.getWidth(), 1000.0);
        Assert.assertEquals(rectangleFOut.getHeight(), 1000.0);
        
        // The final extent of the first shape, in points
        Assert.assertEquals(firstShape.getBoundsWithEffects().getX(), 0.0);
        Assert.assertEquals(firstShape.getBoundsWithEffects().getY(), 0.0);
        Assert.assertEquals(firstShape.getBoundsWithEffects().getWidth(), 147.0);
        Assert.assertEquals(firstShape.getBoundsWithEffects().getHeight(), 147.0);
        
        // Do the same with the second shape
        rectangleF = new Rectangle2D.Float(200f, 200f, 1000f, 1000f);
        rectangleFOut = secondShape.adjustWithEffects(rectangleF);
        
        // The shape's x/y coordinates (top left corner location) have been pushed back by the thick outline
        Assert.assertEquals(rectangleFOut.getX(), 171.5);
        Assert.assertEquals(rectangleFOut.getY(), 167.0);
        
        // The width and height were also affected by the outline and shadow
        Assert.assertEquals(rectangleFOut.getWidth(), 1045.0);
        Assert.assertEquals(rectangleFOut.getHeight(), 1132.0);
        
        // These values are also affected by effects
        Assert.assertEquals(secondShape.getBoundsWithEffects().getX(), -28.5);
        Assert.assertEquals(secondShape.getBoundsWithEffects().getY(), -33.0);
        Assert.assertEquals(secondShape.getBoundsWithEffects().getWidth(), 192.0);
        Assert.assertEquals(secondShape.getBoundsWithEffects().getHeight(), 279.0);
      • canHaveImage

        public boolean canHaveImage()
        
        Returns true if the shape type allows the shape to have an image.

        Although Microsoft Word has a special shape type for images, it appears that in Microsoft Word documents any shape except a group shape can have an image, therefore this property returns true for all shapes except GroupShape.

        Example:

        Shows how to insert shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a cube and set its name
        Shape shape = builder.insertShape(ShapeType.CUBE, 150.0, 150.0);
        shape.setName("MyCube");
        
        // We can also set the alt text like this
        // This text will be found in Format AutoShape > Alt Text
        shape.setAlternativeText("Alt text for MyCube.");
        
        // Insert a text box
        shape = builder.insertShape(ShapeType.TEXT_BOX, 300.0, 50.0);
        shape.getFont().setName("Times New Roman");
        
        // Move the builder into the text box and write text
        builder.moveTo(shape.getLastParagraph());
        builder.write("Hello world!");
        
        // Move the builder out of the text box back into the main document
        builder.moveTo(shape.getParentParagraph());
        
        // Insert a shape with an image
        shape = builder.insertImage(getImageDir() + "Logo.jpg");
        Assert.assertTrue(shape.canHaveImage());
        Assert.assertTrue(shape.hasImage());
        
        // Rotate the image
        shape.setRotation(45.0);
        
        doc.save(getArtifactsDir() + "Shape.Insert.docx");
      • getChildNodes

        public NodeCollection getChildNodes()
        
        Gets all immediate child nodes of this node.

        Note, ChildNodes is equivalent to calling GetChildNodes(NodeType.Any, false) and creates and returns a new collection every time it is accessed.

        If there are no child nodes, this property returns an empty collection.

        Example:

        Shows how to enumerate immediate children of a CompositeNode using the enumerator provided by the ChildNodes collection.
        Document doc = new Document();
        
        Paragraph paragraph = (Paragraph) doc.getChild(NodeType.PARAGRAPH, 0, true);
        paragraph.appendChild(new Run(doc, "Hello world!"));
        paragraph.appendChild(new Run(doc, " Hello again!"));
        
        NodeCollection children = paragraph.getChildNodes();
        
        // Paragraph may contain children of various types such as runs, shapes and so on
        for (Node child : (Iterable<Node>) children)
            if (((child.getNodeType()) == (NodeType.RUN))) {
                Run run = (Run) child;
                System.out.println(run.getText());
            }
      • getCoordOrigin/setCoordOrigin

        public java.awt.Point getCoordOrigin() / public void setCoordOrigin(java.awt.Point value)
        
        The coordinates at the top-left corner of the containing block of this shape.

        The default value is (0,0).

        Example:

        Shows how to create and work with a group of shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        GroupShape group = new GroupShape(doc);
        
        // Every GroupShape by default is a top level floating shape
        Assert.assertTrue(group.isGroup());
        Assert.assertTrue(group.isTopLevel());
        Assert.assertEquals(WrapType.NONE, group.getWrapType());
        
        // Top level shapes can have this property changed
        group.setAnchorLocked(true);
        
        // Set the XY coordinates of the shape group and the size of its containing block, as it appears on the page
        group.setBounds(new Rectangle2D.Float(100f, 50f, 200f, 100f));
        
        // Set the scale of the inner coordinates of the shape group
        // These values mean that the bottom right corner of the 200x100 outer block we set before
        // will be at x = 2000 and y = 1000, or 2000 units from the left and 1000 units from the top
        group.setCoordSize(new Dimension(2000, 1000));
        
        // The coordinate origin of a shape group is x = 0, y = 0 by default, which is the top left corner
        // If we insert a child shape and set its distance from the left to 2000 and the distance from the top to 1000,
        // its origin will be at the bottom right corner of the shape group
        // We can offset the coordinate origin by setting the CoordOrigin attribute
        // In this instance, we move the origin to the centre of the shape group
        group.setCoordOrigin(new Point(-1000, -500));
        
        // Populate the shape group with child shapes
        // First, insert a rectangle
        Shape subShape = new Shape(doc, ShapeType.RECTANGLE);
        subShape.setWidth(500.0);
        subShape.setHeight(700.0);
        
        // Place its top left corner at the parent group's coordinate origin, which is currently at its centre
        subShape.setLeft(0.0);
        subShape.setTop(0.0);
        
        // Add the rectangle to the group
        group.appendChild(subShape);
        
        // Insert a triangle
        subShape = new Shape(doc, ShapeType.TRIANGLE);
        subShape.setWidth(400.0);
        subShape.setHeight(400.0);
        
        // Place its origin at the bottom right corner of the group
        subShape.setLeft(1000.0);
        subShape.setTop(500.0);
        
        // The offset between this child shape and parent group can be seen here
        Assert.assertEquals(subShape.localToParent(new Point2D.Float(0f, 0f)), new Point2D.Float(1000f, 500f));
        
        // Add the triangle to the group
        group.appendChild(subShape);
        
        // Child shapes of a group shape are not top level
        Assert.assertFalse(subShape.isTopLevel());
        
        // Finally, insert the group into the document and save
        builder.insertNode(group);
        doc.save(getArtifactsDir() + "Shape.InsertGroupShape.docx");
      • getCoordSize/setCoordSize

        public java.awt.Dimension getCoordSize() / public void setCoordSize(java.awt.Dimension value)
        
        The width and height of the coordinate space inside the containing block of this shape.

        The default value is (1000, 1000).

        Example:

        Shows how to create and work with a group of shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        GroupShape group = new GroupShape(doc);
        
        // Every GroupShape by default is a top level floating shape
        Assert.assertTrue(group.isGroup());
        Assert.assertTrue(group.isTopLevel());
        Assert.assertEquals(WrapType.NONE, group.getWrapType());
        
        // Top level shapes can have this property changed
        group.setAnchorLocked(true);
        
        // Set the XY coordinates of the shape group and the size of its containing block, as it appears on the page
        group.setBounds(new Rectangle2D.Float(100f, 50f, 200f, 100f));
        
        // Set the scale of the inner coordinates of the shape group
        // These values mean that the bottom right corner of the 200x100 outer block we set before
        // will be at x = 2000 and y = 1000, or 2000 units from the left and 1000 units from the top
        group.setCoordSize(new Dimension(2000, 1000));
        
        // The coordinate origin of a shape group is x = 0, y = 0 by default, which is the top left corner
        // If we insert a child shape and set its distance from the left to 2000 and the distance from the top to 1000,
        // its origin will be at the bottom right corner of the shape group
        // We can offset the coordinate origin by setting the CoordOrigin attribute
        // In this instance, we move the origin to the centre of the shape group
        group.setCoordOrigin(new Point(-1000, -500));
        
        // Populate the shape group with child shapes
        // First, insert a rectangle
        Shape subShape = new Shape(doc, ShapeType.RECTANGLE);
        subShape.setWidth(500.0);
        subShape.setHeight(700.0);
        
        // Place its top left corner at the parent group's coordinate origin, which is currently at its centre
        subShape.setLeft(0.0);
        subShape.setTop(0.0);
        
        // Add the rectangle to the group
        group.appendChild(subShape);
        
        // Insert a triangle
        subShape = new Shape(doc, ShapeType.TRIANGLE);
        subShape.setWidth(400.0);
        subShape.setHeight(400.0);
        
        // Place its origin at the bottom right corner of the group
        subShape.setLeft(1000.0);
        subShape.setTop(500.0);
        
        // The offset between this child shape and parent group can be seen here
        Assert.assertEquals(subShape.localToParent(new Point2D.Float(0f, 0f)), new Point2D.Float(1000f, 500f));
        
        // Add the triangle to the group
        group.appendChild(subShape);
        
        // Child shapes of a group shape are not top level
        Assert.assertFalse(subShape.isTopLevel());
        
        // Finally, insert the group into the document and save
        builder.insertNode(group);
        doc.save(getArtifactsDir() + "Shape.InsertGroupShape.docx");
      • getCount

        public int getCount()
        
        Gets the number of immediate children of this node.

        Example:

        Shows how to add, update and delete child nodes from a CompositeNode's child collection.
        Document doc = new Document();
        
        // An empty document has one paragraph by default
        Assert.assertEquals(1, doc.getFirstSection().getBody().getParagraphs().getCount());
        
        // A paragraph is a composite node because it can contain runs, which are another type of node
        Paragraph paragraph = doc.getFirstSection().getBody().getFirstParagraph();
        Run paragraphText = new Run(doc, "Initial text. ");
        paragraph.appendChild(paragraphText);
        
        // We will place these 3 children into the main text of our paragraph
        Run run1 = new Run(doc, "Run 1. ");
        Run run2 = new Run(doc, "Run 2. ");
        Run run3 = new Run(doc, "Run 3. ");
        
        // We initialized them but not in our paragraph yet
        Assert.assertEquals("Initial text.", paragraph.getText().trim());
        
        // Insert run2 before initial paragraph text. This will be at the start of the paragraph
        paragraph.insertBefore(run2, paragraphText);
        
        // Insert run3 after initial paragraph text. This will be at the end of the paragraph
        paragraph.insertAfter(run3, paragraphText);
        
        // Insert run1 before every other child node. run2 was the start of the paragraph, now it will be run1
        paragraph.prependChild(run1);
        
        Assert.assertEquals("Run 1. Run 2. Initial text. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(4, paragraph.getChildNodes(NodeType.ANY, true).getCount());
        
        // Access the child node collection and update/delete children
        ((Run) paragraph.getChildNodes(NodeType.RUN, true).get(1)).setText("Updated run 2. ");
        paragraph.getChildNodes(NodeType.RUN, true).remove(paragraphText);
        
        Assert.assertEquals("Run 1. Updated run 2. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(3, paragraph.getChildNodes(NodeType.ANY, true).getCount());
      • getDistanceBottom/setDistanceBottom

        public double getDistanceBottom() / public void setDistanceBottom(double value)
        
        Returns or sets the distance (in points) between the document text and the bottom edge of the shape.

        The default value is 0.

        Has effect only for top level shapes.

        Example:

        Shows how to set the wrapping distance for text that surrounds a shape.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a rectangle and get the text to wrap tightly around its bounds
        Shape shape = builder.insertShape(ShapeType.RECTANGLE, 150.0, 150.0);
        shape.setWrapType(WrapType.TIGHT);
        
        // Set the minimum distance between the shape and surrounding text
        shape.setDistanceTop(40.0);
        shape.setDistanceBottom(40.0);
        shape.setDistanceLeft(40.0);
        shape.setDistanceRight(40.0);
        
        // Move the shape closer to the centre of the page
        shape.setLeft(100.0);
        shape.setTop(100.0);
        
        // Rotate the shape
        shape.setRotation(60.0);
        
        // Add text that will wrap around the shape
        builder.getFont().setSize(24.0d);
        builder.write("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +
                "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.");
        
        doc.save(getArtifactsDir() + "Shape.Coordinates.docx");
      • getDistanceLeft/setDistanceLeft

        public double getDistanceLeft() / public void setDistanceLeft(double value)
        
        Returns or sets the distance (in points) between the document text and the left edge of the shape.

        The default value is 1/8 inch.

        Has effect only for top level shapes.

        Example:

        Shows how to set the wrapping distance for text that surrounds a shape.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a rectangle and get the text to wrap tightly around its bounds
        Shape shape = builder.insertShape(ShapeType.RECTANGLE, 150.0, 150.0);
        shape.setWrapType(WrapType.TIGHT);
        
        // Set the minimum distance between the shape and surrounding text
        shape.setDistanceTop(40.0);
        shape.setDistanceBottom(40.0);
        shape.setDistanceLeft(40.0);
        shape.setDistanceRight(40.0);
        
        // Move the shape closer to the centre of the page
        shape.setLeft(100.0);
        shape.setTop(100.0);
        
        // Rotate the shape
        shape.setRotation(60.0);
        
        // Add text that will wrap around the shape
        builder.getFont().setSize(24.0d);
        builder.write("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +
                "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.");
        
        doc.save(getArtifactsDir() + "Shape.Coordinates.docx");
      • getDistanceRight/setDistanceRight

        public double getDistanceRight() / public void setDistanceRight(double value)
        
        Returns or sets the distance (in points) between the document text and the right edge of the shape.

        The default value is 1/8 inch.

        Has effect only for top level shapes.

        Example:

        Shows how to set the wrapping distance for text that surrounds a shape.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a rectangle and get the text to wrap tightly around its bounds
        Shape shape = builder.insertShape(ShapeType.RECTANGLE, 150.0, 150.0);
        shape.setWrapType(WrapType.TIGHT);
        
        // Set the minimum distance between the shape and surrounding text
        shape.setDistanceTop(40.0);
        shape.setDistanceBottom(40.0);
        shape.setDistanceLeft(40.0);
        shape.setDistanceRight(40.0);
        
        // Move the shape closer to the centre of the page
        shape.setLeft(100.0);
        shape.setTop(100.0);
        
        // Rotate the shape
        shape.setRotation(60.0);
        
        // Add text that will wrap around the shape
        builder.getFont().setSize(24.0d);
        builder.write("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +
                "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.");
        
        doc.save(getArtifactsDir() + "Shape.Coordinates.docx");
      • getDistanceTop/setDistanceTop

        public double getDistanceTop() / public void setDistanceTop(double value)
        
        Returns or sets the distance (in points) between the document text and the top edge of the shape.

        The default value is 0.

        Has effect only for top level shapes.

        Example:

        Shows how to set the wrapping distance for text that surrounds a shape.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a rectangle and get the text to wrap tightly around its bounds
        Shape shape = builder.insertShape(ShapeType.RECTANGLE, 150.0, 150.0);
        shape.setWrapType(WrapType.TIGHT);
        
        // Set the minimum distance between the shape and surrounding text
        shape.setDistanceTop(40.0);
        shape.setDistanceBottom(40.0);
        shape.setDistanceLeft(40.0);
        shape.setDistanceRight(40.0);
        
        // Move the shape closer to the centre of the page
        shape.setLeft(100.0);
        shape.setTop(100.0);
        
        // Rotate the shape
        shape.setRotation(60.0);
        
        // Add text that will wrap around the shape
        builder.getFont().setSize(24.0d);
        builder.write("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +
                "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.");
        
        doc.save(getArtifactsDir() + "Shape.Coordinates.docx");
      • getDocument

        public DocumentBase getDocument()
        
        Gets the document to which this node belongs.

        The node always belongs to a document even if it has just been created and not yet added to the tree, or if it has been removed from the tree.

        Example:

        Shows how to create a node and set its owning document.
        // Open a file from disk
        Document doc = new Document();
        
        // Creating a new node of any type requires a document passed into the constructor
        Paragraph para = new Paragraph(doc);
        
        // The new paragraph node does not yet have a parent
        System.out.println("Paragraph has no parent node: " + (para.getParentNode() == null));
        
        // But the paragraph node knows its document
        System.out.println("Both nodes' documents are the same: " + (para.getDocument() == doc));
        
        // The fact that a node always belongs to a document allows us to access and modify 
        // properties that reference the document-wide data such as styles or lists
        para.getParagraphFormat().setStyleName("Heading 1");
        
        // Now add the paragraph to the main text of the first section
        doc.getFirstSection().getBody().appendChild(para);
        
        // The paragraph node is now a child of the Body node
        System.out.println("Paragraph has a parent node: " + (para.getParentNode() != null));
      • getFirstChild

        public Node getFirstChild()
        
        Gets the first child of the node. If there is no first child node, a null is returned.

        Example:

        Shows how to enumerate immediate child nodes of a composite node using NextSibling.
        Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
        // Loop starting from the first child until we reach null
        for (Node node = doc.getFirstSection().getBody().getFirstChild(); node != null; node = node.getNextSibling()) {
            // Output the types of the nodes that we come across
            System.out.println(Node.nodeTypeToString(node.getNodeType()));
        }

        Example:

        Shows how to efficiently visit all direct and indirect children of a composite node.
        public void recurseAllNodes() throws Exception {
            Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
            // Any node that can contain child nodes, such as the document itself, is composite
            Assert.assertTrue(doc.isComposite());
        
            // Invoke the recursive function that will go through and print all the child nodes of a composite node
            traverseAllNodes(doc, 0);
        }
        
        /// <summary>
        /// Recursively traverses a node tree while printing the type of each node with an indent depending on depth as well as the contents of all inline nodes.
        /// </summary>
        @Test(enabled = false)
        public void traverseAllNodes(CompositeNode parentNode, int depth) {
            // Loop through immediate children of a node
            for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) {
                System.out.println(MessageFormat.format("{0}{1}", String.format("    ", depth), Node.nodeTypeToString(childNode.getNodeType())));
        
                // Recurse into the node if it is a composite node
                if (childNode.isComposite()) {
                    System.out.println();
                    traverseAllNodes((CompositeNode) childNode, depth + 1);
                } else if (childNode instanceof Inline) {
                    System.out.println(" - \"{childNode.GetText().Trim()}\"");
                } else {
                    System.out.println();
                }
            }
        }
      • getFlipOrientation/setFlipOrientation

        public int getFlipOrientation() / public void setFlipOrientation(int value)
        
        Switches the orientation of a shape. The value of the property is FlipOrientation integer constant.

        The default value is FlipOrientation.NONE.

        Example:

        Shows how to create line shapes and set specific location and size.
        Document doc = new Document();
        
        // The lines will cross the whole page
        float pageWidth = (float) doc.getFirstSection().getPageSetup().getPageWidth();
        float pageHeight = (float) doc.getFirstSection().getPageSetup().getPageHeight();
        
        // This line goes from top left to bottom right by default
        Shape lineA = new Shape(doc, ShapeType.LINE);
        {
            lineA.setBounds(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight));
            lineA.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            lineA.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        }
        
        Assert.assertEquals(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight), lineA.getBoundsInPoints());
        
        // This line goes from bottom left to top right because we flipped it
        Shape lineB = new Shape(doc, ShapeType.LINE);
        {
            lineB.setBounds(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight));
            lineB.setFlipOrientation(FlipOrientation.HORIZONTAL);
            lineB.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            lineB.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        }
        
        Assert.assertEquals(new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight), lineB.getBoundsInPoints());
        
        // Add lines to the document
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineB);
        
        doc.save(getArtifactsDir() + "Shape.LineFlipOrientation.docx");
      • getFont

        public Font getFont()
        
        Provides access to the font formatting of this object.

        Example:

        Shows how to insert shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a cube and set its name
        Shape shape = builder.insertShape(ShapeType.CUBE, 150.0, 150.0);
        shape.setName("MyCube");
        
        // We can also set the alt text like this
        // This text will be found in Format AutoShape > Alt Text
        shape.setAlternativeText("Alt text for MyCube.");
        
        // Insert a text box
        shape = builder.insertShape(ShapeType.TEXT_BOX, 300.0, 50.0);
        shape.getFont().setName("Times New Roman");
        
        // Move the builder into the text box and write text
        builder.moveTo(shape.getLastParagraph());
        builder.write("Hello world!");
        
        // Move the builder out of the text box back into the main document
        builder.moveTo(shape.getParentParagraph());
        
        // Insert a shape with an image
        shape = builder.insertImage(getImageDir() + "Logo.jpg");
        Assert.assertTrue(shape.canHaveImage());
        Assert.assertTrue(shape.hasImage());
        
        // Rotate the image
        shape.setRotation(45.0);
        
        doc.save(getArtifactsDir() + "Shape.Insert.docx");
      • hasChildNodes

        public boolean hasChildNodes()
        
        Returns true if this node has any child nodes.

        Example:

        Shows how to combine the rows from two tables into one.
        // Load the document
        Document doc = new Document(getMyDir() + "Tables.docx");
        
        // Get the first and second table in the document
        // The rows from the second table will be appended to the end of the first table
        Table firstTable = (Table) doc.getChild(NodeType.TABLE, 0, true);
        Table secondTable = (Table) doc.getChild(NodeType.TABLE, 1, true);
        
        // Append all rows from the current table to the next
        // Due to the design of tables even tables with different cell count and widths can be joined into one table
        while (secondTable.hasChildNodes())
            firstTable.getRows().add(secondTable.getFirstRow());
        
        // Remove the empty table container
        secondTable.remove();
        
        doc.save(getArtifactsDir() + "Table.CombineTables.docx");
      • getHeight/setHeight

        public double getHeight() / public void setHeight(double value)
        
        Gets or sets the height of the containing block of the shape.

        For a top-level shape, the value is in points.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        The default value is 0.

        Example:

        Shows how to resize a shape with an image.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inserted at 100% scale
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Reduce the overall size of the shape by 50%
        shape.setWidth(shape.getWidth() * 0.5);
        shape.setHeight(shape.getHeight() * 0.5);
        
        Assert.assertEquals(75.0d, shape.getWidth());
        Assert.assertEquals(75.0d, shape.getHeight());
        
        // However, we can also go back to the original image size and scale from there, for example, to 110%
        ImageSize imageSize = shape.getImageData().getImageSize();
        shape.setWidth(imageSize.getWidthPoints() * 1.1);
        shape.setHeight(imageSize.getHeightPoints() * 1.1);
        
        Assert.assertEquals(330.0d, shape.getWidth());
        Assert.assertEquals(330.0d, shape.getHeight());
        
        doc.save(getArtifactsDir() + "Image.ScaleImage.docx");

        Example:

        Shows how to insert a floating image and specify its position and size.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        
        // Make position relative to the page
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        
        // Set the shape's coordinates, from the top left corner of the page
        shape.setLeft(100.0);
        shape.setTop(80.0);
        
        // Set the shape's height
        shape.setHeight(125.0);
        
        // The width will be scaled to the height and the dimensions of the real image
        Assert.assertEquals(shape.getWidth(), 125.0);
        
        // The Bottom and Right members contain the locations of the bottom and right edges of the image
        Assert.assertEquals(shape.getBottom(), shape.getTop() + shape.getHeight());
        Assert.assertEquals(shape.getRight(), shape.getLeft() + shape.getWidth());
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPositionSize.docx");
      • getHorizontalAlignment/setHorizontalAlignment

        public int getHorizontalAlignment() / public void setHorizontalAlignment(int value)
        
        Specifies how the shape is positioned horizontally. The value of the property is HorizontalAlignment integer constant.

        The default value is HorizontalAlignment.NONE.

        Has effect only for top level floating shapes.

        Example:

        Shows how to insert a floating image in the middle of a page.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        shape.setBehindText(true);
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
        shape.setVerticalAlignment(VerticalAlignment.CENTER);
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");
      • getHRef/setHRef

        public java.lang.String getHRef() / public void setHRef(java.lang.String value)
        
        Gets or sets the full hyperlink address for a shape.

        The default value is an empty string.

        Below are examples of valid values for this property:

        Full URI: https://www.aspose.com/.

        Full file name: C:\\My Documents\\SalesReport.doc.

        Relative URI: ../../../resource.txt

        Relative file name: ..\\My Documents\\SalesReport.doc.

        Bookmark within another document: https://www.aspose.com/Products/Default.aspx#Suites

        Bookmark within this document: #BookmakName.

        Example:

        Shows how to insert an image with a hyperlink.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        Shape shape = builder.insertImage(getImageDir() + "Windows MetaFile.wmf");
        shape.setHRef("https://forum.aspose.com/");
        shape.setTarget("New Window");
        shape.setScreenTip("Aspose.Words Support Forums");
        
        doc.save(getArtifactsDir() + "Image.InsertImageWithHyperlink.docx");
      • isComposite

        public boolean isComposite()
        
        Returns true as this node can have child nodes.

        Example:

        Shows how to efficiently visit all direct and indirect children of a composite node.
        public void recurseAllNodes() throws Exception {
            Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
            // Any node that can contain child nodes, such as the document itself, is composite
            Assert.assertTrue(doc.isComposite());
        
            // Invoke the recursive function that will go through and print all the child nodes of a composite node
            traverseAllNodes(doc, 0);
        }
        
        /// <summary>
        /// Recursively traverses a node tree while printing the type of each node with an indent depending on depth as well as the contents of all inline nodes.
        /// </summary>
        @Test(enabled = false)
        public void traverseAllNodes(CompositeNode parentNode, int depth) {
            // Loop through immediate children of a node
            for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) {
                System.out.println(MessageFormat.format("{0}{1}", String.format("    ", depth), Node.nodeTypeToString(childNode.getNodeType())));
        
                // Recurse into the node if it is a composite node
                if (childNode.isComposite()) {
                    System.out.println();
                    traverseAllNodes((CompositeNode) childNode, depth + 1);
                } else if (childNode instanceof Inline) {
                    System.out.println(" - \"{childNode.GetText().Trim()}\"");
                } else {
                    System.out.println();
                }
            }
        }
      • isDeleteRevision

        public boolean isDeleteRevision()
        
        Returns true if this object was deleted in Microsoft Word while change tracking was enabled.

        Example:

        Shows how to work with revision shapes.
        // Open a blank document
        Document doc = new Document();
        
        // Insert an inline shape without tracking revisions
        Assert.assertFalse(doc.getTrackRevisions());
        Shape shape = new Shape(doc, ShapeType.CUBE);
        shape.setWrapType(WrapType.INLINE);
        shape.setWidth(100.0);
        shape.setHeight(100.0);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(shape);
        
        // Start tracking revisions and then insert another shape
        doc.startTrackRevisions("John Doe");
        
        shape = new Shape(doc, ShapeType.SUN);
        shape.setWrapType(WrapType.INLINE);
        shape.setWidth(100.0);
        shape.setHeight(100.0);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(shape);
        
        // Get the document's shape collection which includes just the two shapes we added
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(shapes.getCount(), 2);
        
        // Remove the first shape
        Shape firstShape = (Shape) shapes.get(0);
        firstShape.remove();
        
        // Because we removed that shape while changes were being tracked, the shape counts as a delete revision
        Assert.assertEquals(firstShape.getShapeType(), ShapeType.CUBE);
        Assert.assertTrue(firstShape.isDeleteRevision());
        
        Shape secondShape = (Shape) shapes.get(1);
        
        // And we inserted another shape while tracking changes, so that shape will count as an insert revision
        Assert.assertEquals(secondShape.getShapeType(), ShapeType.SUN);
        Assert.assertTrue(secondShape.isInsertRevision());
      • isGroup

        public boolean isGroup()
        
        Returns true if this is a group shape.

        Example:

        Shows how to create a group of shapes, and print its contents using a document visitor.
        public void groupOfShapes() throws Exception {
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);
        
            // If you need to create "NonPrimitive" shapes, such as SingleCornerSnipped, TopCornersSnipped, DiagonalCornersSnipped,
            // TopCornersOneRoundedOneSnipped, SingleCornerRounded, TopCornersRounded, DiagonalCornersRounded
            // please use DocumentBuilder.InsertShape methods.
            Shape balloon = new Shape(doc, ShapeType.BALLOON);
            balloon.setWidth(200.0);
            balloon.setHeight(200.0);
            balloon.setStrokeColor(Color.RED);
        
            Shape cube = new Shape(doc, ShapeType.CUBE);
            cube.setWidth(100.0);
            cube.setHeight(100.0);
            cube.setStrokeColor(Color.BLUE);
        
            GroupShape group = new GroupShape(doc);
            group.appendChild(balloon);
            group.appendChild(cube);
        
            Assert.assertTrue(group.isGroup());
            builder.insertNode(group);
        
            ShapeInfoPrinter printer = new ShapeInfoPrinter();
            group.accept(printer);
        
            System.out.println(printer.getText());
        }
        
        /// <summary>
        /// Prints the contents of a visited shape group to the console.
        /// </summary>
        public static class ShapeInfoPrinter extends DocumentVisitor {
            public ShapeInfoPrinter() {
                mBuilder = new StringBuilder();
            }
        
            public String getText() {
                return mBuilder.toString();
            }
        
            public int visitGroupShapeStart(final GroupShape groupShape) {
                mBuilder.append("Shape group started:\r\n");
                return VisitorAction.CONTINUE;
            }
        
            public int visitGroupShapeEnd(final GroupShape groupShape) {
                mBuilder.append("End of shape group\r\n");
                return VisitorAction.CONTINUE;
            }
        
            public int visitShapeStart(final Shape shape) {
                mBuilder.append("\tShape - " + shape.getShapeType() + ":\r\n");
                mBuilder.append("\t\tWidth: " + shape.getWidth() + "\r\n");
                mBuilder.append("\t\tHeight: " + shape.getHeight() + "\r\n");
                mBuilder.append("\t\tStroke color: " + shape.getStroke().getColor() + "\r\n");
                mBuilder.append("\t\tFill color: " + shape.getFill().getColor() + "\r\n");
                return VisitorAction.CONTINUE;
            }
        
            public int visitShapeEnd(final Shape shape) {
                mBuilder.append("\tEnd of shape\r\n");
                return VisitorAction.CONTINUE;
            }
        
            private StringBuilder mBuilder;
        }
      • isHorizontalRule

        public boolean isHorizontalRule()
        
        Returns true if this shape is a horizontal rule.

        Example:

        Shows how to insert a horizontal rule shape, and customize its formatting.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        Shape shape = builder.insertHorizontalRule();
        
        HorizontalRuleFormat horizontalRuleFormat = shape.getHorizontalRuleFormat();
        horizontalRuleFormat.setAlignment(HorizontalRuleAlignment.CENTER);
        horizontalRuleFormat.setWidthPercent(70.0);
        horizontalRuleFormat.setHeight(3.0);
        horizontalRuleFormat.setColor(Color.BLUE);
        horizontalRuleFormat.setNoShade(true);
        
        Assert.assertTrue(shape.isHorizontalRule());
        Assert.assertTrue(shape.getHorizontalRuleFormat().getNoShade());
      • isImage

        public boolean isImage()
        
        Returns true if this shape is an image shape.
      • isInline

        public boolean isInline()
        
        A quick way to determine if this shape is positioned inline with text.

        Has effect only for top level shapes.

        Example:

        Shows how to test if a shape in the document is inline or floating.
        Document doc = new Document(getMyDir() + "Rendering.docx");
        
        for (Shape shape : (Iterable<Shape>) doc.getChildNodes(NodeType.SHAPE, true)) {
            if (shape.isInline()) System.out.println("Shape is inline.");
            else System.out.println("Shape is floating.");
        }
      • isInsertRevision

        public boolean isInsertRevision()
        
        Returns true if this object was inserted in Microsoft Word while change tracking was enabled.

        Example:

        Shows how to work with revision shapes.
        // Open a blank document
        Document doc = new Document();
        
        // Insert an inline shape without tracking revisions
        Assert.assertFalse(doc.getTrackRevisions());
        Shape shape = new Shape(doc, ShapeType.CUBE);
        shape.setWrapType(WrapType.INLINE);
        shape.setWidth(100.0);
        shape.setHeight(100.0);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(shape);
        
        // Start tracking revisions and then insert another shape
        doc.startTrackRevisions("John Doe");
        
        shape = new Shape(doc, ShapeType.SUN);
        shape.setWrapType(WrapType.INLINE);
        shape.setWidth(100.0);
        shape.setHeight(100.0);
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(shape);
        
        // Get the document's shape collection which includes just the two shapes we added
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(shapes.getCount(), 2);
        
        // Remove the first shape
        Shape firstShape = (Shape) shapes.get(0);
        firstShape.remove();
        
        // Because we removed that shape while changes were being tracked, the shape counts as a delete revision
        Assert.assertEquals(firstShape.getShapeType(), ShapeType.CUBE);
        Assert.assertTrue(firstShape.isDeleteRevision());
        
        Shape secondShape = (Shape) shapes.get(1);
        
        // And we inserted another shape while tracking changes, so that shape will count as an insert revision
        Assert.assertEquals(secondShape.getShapeType(), ShapeType.SUN);
        Assert.assertTrue(secondShape.isInsertRevision());
      • isLayoutInCell/isLayoutInCell

        public boolean isLayoutInCell() / public void isLayoutInCell(boolean value)
        
        Gets or sets a flag indicating whether the shape is displayed inside a table or outside of it.

        The default value is true.

        Has effect only for top level shapes, the property WrapType of which is set to value other than Inline.

        Example:

        Shows how to display the shape, inside a table or outside of it.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        builder.startTable();
        builder.getRowFormat().setHeight(100.0);
        builder.getRowFormat().setHeightRule(HeightRule.EXACTLY);
        
        for (int i = 0; i < 31; i++) {
            if (i != 0 && i % 7 == 0) builder.endRow();
            builder.insertCell();
            builder.write("Cell contents");
        }
        
        builder.endTable();
        
        NodeCollection runs = doc.getChildNodes(NodeType.RUN, true);
        int num = 1;
        
        for (Run run : (Iterable<Run>) runs) {
            Shape watermark = new Shape(doc, ShapeType.TEXT_PLAIN_TEXT);
            watermark.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
            watermark.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
            // False - display the shape outside of table cell, True - display the shape outside of table cell
            watermark.isLayoutInCell(true);
        
            watermark.setWidth(30.0);
            watermark.setHeight(30.0);
            watermark.setHorizontalAlignment(HorizontalAlignment.CENTER);
            watermark.setVerticalAlignment(VerticalAlignment.CENTER);
        
            watermark.setRotation(-40);
            watermark.getFill().setColor(new Color(220, 220, 220));
            watermark.setStrokeColor(new Color(220, 220, 220));
        
            watermark.getTextPath().setText(MessageFormat.format("{0}", num));
            watermark.getTextPath().setFontFamily("Arial");
        
            watermark.setName(MessageFormat.format("Watermark_{0}", num));
            // Property will take effect only if the WrapType property is set to something other than WrapType.Inline
            watermark.setWrapType(WrapType.NONE);
            watermark.setBehindText(true);
        
            builder.moveTo(run);
            builder.insertNode(watermark);
        
            num = num + 1;
        }
        
        // Behaviour of MS Word on working with shapes in table cells is changed in the last versions
        // Adding the following line is needed to make the shape displayed in center of a page
        doc.getCompatibilityOptions().optimizeFor(MsWordVersion.WORD_2010);
        
        doc.save(getArtifactsDir() + "Shape.LayoutInTableCell.docx");
      • isMoveFromRevision

        public boolean isMoveFromRevision()
        
        Returns true if this object was moved (deleted) in Microsoft Word while change tracking was enabled.

        Example:

        Shows how to identify move revision shapes.
        // Open a document that contains a move revision
        // A move revision is when we, while changes are tracked, cut(not copy)-and-paste or highlight and drag text from one place to another
        // If inline shapes are caught up in the text movement, they will count as move revisions as well
        // Moving a floating shape will not count as a move revision
        Document doc = new Document(getMyDir() + "Revision shape.docx");
        
        // The document has one shape that was moved, but shape move revisions will have two instances of that shape
        // One will be the shape at its arrival destination and the other will be the shape at its original location
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(shapes.getCount(), 2);
        
        Shape firstShape = (Shape) shapes.get(0);
        
        // This is the move to revision, also the shape at its arrival destination
        Assert.assertFalse(firstShape.isMoveFromRevision());
        Assert.assertTrue(firstShape.isMoveToRevision());
        
        Shape secondShape = (Shape) shapes.get(1);
        
        // This is the move from revision, which is the shape at its original location
        Assert.assertTrue(secondShape.isMoveFromRevision());
        Assert.assertFalse(secondShape.isMoveToRevision());
      • isMoveToRevision

        public boolean isMoveToRevision()
        
        Returns true if this object was moved (inserted) in Microsoft Word while change tracking was enabled.

        Example:

        Shows how to identify move revision shapes.
        // Open a document that contains a move revision
        // A move revision is when we, while changes are tracked, cut(not copy)-and-paste or highlight and drag text from one place to another
        // If inline shapes are caught up in the text movement, they will count as move revisions as well
        // Moving a floating shape will not count as a move revision
        Document doc = new Document(getMyDir() + "Revision shape.docx");
        
        // The document has one shape that was moved, but shape move revisions will have two instances of that shape
        // One will be the shape at its arrival destination and the other will be the shape at its original location
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(shapes.getCount(), 2);
        
        Shape firstShape = (Shape) shapes.get(0);
        
        // This is the move to revision, also the shape at its arrival destination
        Assert.assertFalse(firstShape.isMoveFromRevision());
        Assert.assertTrue(firstShape.isMoveToRevision());
        
        Shape secondShape = (Shape) shapes.get(1);
        
        // This is the move from revision, which is the shape at its original location
        Assert.assertTrue(secondShape.isMoveFromRevision());
        Assert.assertFalse(secondShape.isMoveToRevision());
      • isSignatureLine

        public boolean isSignatureLine()
        
        Indicates that shape is a SignatureLine.

        Example:

        Shows how to create a line for a signature and insert it into a document.
        // Create a blank document and its DocumentBuilder
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // The SignatureLineOptions will contain all the data that the signature line will display
        SignatureLineOptions options = new SignatureLineOptions();
        {
            options.setAllowComments(true);
            options.setDefaultInstructions(true);
            options.setEmail("john.doe@management.com");
            options.setInstructions("Please sign here");
            options.setShowDate(true);
            options.setSigner("John Doe");
            options.setSignerTitle("Senior Manager");
        }
        
        // Insert the signature line, applying our SignatureLineOptions
        // We can control where the signature line will appear on the page using a combination of left/top indents and margin-relative positions
        // Since we're placing the signature line at the bottom right of the page, we will need to use negative indents to move it into view
        Shape shape = builder.insertSignatureLine(options, RelativeHorizontalPosition.RIGHT_MARGIN, -170.0, RelativeVerticalPosition.BOTTOM_MARGIN, -60.0, WrapType.NONE);
        Assert.assertTrue(shape.isSignatureLine());
        
        // The SignatureLine object is a member of the shape that contains it
        SignatureLine signatureLine = shape.getSignatureLine();
        
        Assert.assertEquals(signatureLine.getEmail(), "john.doe@management.com");
        Assert.assertEquals(signatureLine.getSigner(), "John Doe");
        Assert.assertEquals(signatureLine.getSignerTitle(), "Senior Manager");
        Assert.assertEquals(signatureLine.getInstructions(), "Please sign here");
        Assert.assertTrue(signatureLine.getShowDate());
        
        Assert.assertTrue(signatureLine.getAllowComments());
        Assert.assertTrue(signatureLine.getDefaultInstructions());
        
        // We will be prompted to sign it when we open the document
        Assert.assertFalse(signatureLine.isSigned());
        
        // The object may be valid, but the signature itself isn't until it is signed
        Assert.assertFalse(signatureLine.isValid());
        
        doc.save(getArtifactsDir() + "Shape.SignatureLine.docx");
      • isTopLevel

        public boolean isTopLevel()
        
        Returns true if this shape is not a child of a group shape.

        Example:

        Shows how to create and work with a group of shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        GroupShape group = new GroupShape(doc);
        
        // Every GroupShape by default is a top level floating shape
        Assert.assertTrue(group.isGroup());
        Assert.assertTrue(group.isTopLevel());
        Assert.assertEquals(WrapType.NONE, group.getWrapType());
        
        // Top level shapes can have this property changed
        group.setAnchorLocked(true);
        
        // Set the XY coordinates of the shape group and the size of its containing block, as it appears on the page
        group.setBounds(new Rectangle2D.Float(100f, 50f, 200f, 100f));
        
        // Set the scale of the inner coordinates of the shape group
        // These values mean that the bottom right corner of the 200x100 outer block we set before
        // will be at x = 2000 and y = 1000, or 2000 units from the left and 1000 units from the top
        group.setCoordSize(new Dimension(2000, 1000));
        
        // The coordinate origin of a shape group is x = 0, y = 0 by default, which is the top left corner
        // If we insert a child shape and set its distance from the left to 2000 and the distance from the top to 1000,
        // its origin will be at the bottom right corner of the shape group
        // We can offset the coordinate origin by setting the CoordOrigin attribute
        // In this instance, we move the origin to the centre of the shape group
        group.setCoordOrigin(new Point(-1000, -500));
        
        // Populate the shape group with child shapes
        // First, insert a rectangle
        Shape subShape = new Shape(doc, ShapeType.RECTANGLE);
        subShape.setWidth(500.0);
        subShape.setHeight(700.0);
        
        // Place its top left corner at the parent group's coordinate origin, which is currently at its centre
        subShape.setLeft(0.0);
        subShape.setTop(0.0);
        
        // Add the rectangle to the group
        group.appendChild(subShape);
        
        // Insert a triangle
        subShape = new Shape(doc, ShapeType.TRIANGLE);
        subShape.setWidth(400.0);
        subShape.setHeight(400.0);
        
        // Place its origin at the bottom right corner of the group
        subShape.setLeft(1000.0);
        subShape.setTop(500.0);
        
        // The offset between this child shape and parent group can be seen here
        Assert.assertEquals(subShape.localToParent(new Point2D.Float(0f, 0f)), new Point2D.Float(1000f, 500f));
        
        // Add the triangle to the group
        group.appendChild(subShape);
        
        // Child shapes of a group shape are not top level
        Assert.assertFalse(subShape.isTopLevel());
        
        // Finally, insert the group into the document and save
        builder.insertNode(group);
        doc.save(getArtifactsDir() + "Shape.InsertGroupShape.docx");
      • isWordArt

        public boolean isWordArt()
        
        Returns true if this shape is a WordArt object. Works till 2007 compatibility mode. In 2010 and higher compatibility mode WordArt is just a TextBox with fancy fonts.

        Example:

        Shows how to work with WordArt.
        public void insertTextPaths() throws Exception {
            Document doc = new Document();
        
            // Insert a WordArt object and capture the shape that contains it in a variable
            Shape shape = appendWordArt(doc, "Bold & Italic", "Arial", 240.0, 24.0, Color.WHITE, Color.BLACK, ShapeType.TEXT_PLAIN_TEXT);
        
            // View and verify various text formatting settings
            shape.getTextPath().setBold(true);
            shape.getTextPath().setItalic(true);
        
            Assert.assertFalse(shape.getTextPath().getUnderline());
            Assert.assertFalse(shape.getTextPath().getShadow());
            Assert.assertFalse(shape.getTextPath().getStrikeThrough());
            Assert.assertFalse(shape.getTextPath().getReverseRows());
            Assert.assertFalse(shape.getTextPath().getXScale());
            Assert.assertFalse(shape.getTextPath().getTrim());
            Assert.assertFalse(shape.getTextPath().getSmallCaps());
        
            Assert.assertEquals(shape.getTextPath().getSize(), 36.0);
            Assert.assertEquals(shape.getTextPath().getText(), "Bold & Italic");
            Assert.assertEquals(shape.getShapeType(), ShapeType.TEXT_PLAIN_TEXT);
        
            // Toggle whether or not to display text
            shape = appendWordArt(doc, "On set to true", "Calibri", 150.0, 24.0, Color.YELLOW, Color.RED, ShapeType.TEXT_PLAIN_TEXT);
            shape.getTextPath().setOn(true);
        
            shape = appendWordArt(doc, "On set to false", "Calibri", 150.0, 24.0, Color.YELLOW, Color.RED, ShapeType.TEXT_PLAIN_TEXT);
            shape.getTextPath().setOn(false);
        
            // Apply kerning
            shape = appendWordArt(doc, "Kerning: VAV", "Times New Roman", 90.0, 24.0, Color.ORANGE, Color.RED, ShapeType.TEXT_PLAIN_TEXT);
            shape.getTextPath().setKerning(true);
        
            shape = appendWordArt(doc, "No kerning: VAV", "Times New Roman", 100.0, 24.0, Color.ORANGE, Color.RED, ShapeType.TEXT_PLAIN_TEXT);
            shape.getTextPath().setKerning(false);
        
            // Apply custom spacing, on a scale from 0.0 (none) to 1.0 (default)
            shape = appendWordArt(doc, "Spacing set to 0.1", "Calibri", 120.0, 24.0, Color.BLUE, Color.BLUE, ShapeType.TEXT_CASCADE_DOWN);
            shape.getTextPath().setSpacing(0.1);
        
            // Rotate letters 90 degrees to the left, text is still laid out horizontally
            shape = appendWordArt(doc, "RotateLetters", "Calibri", 200.0, 36.0, Color.YELLOW, Color.GREEN, ShapeType.TEXT_WAVE);
            shape.getTextPath().setRotateLetters(true);
        
            // Set the x-height to equal the cap height
            shape = appendWordArt(doc, "Same character height for lower and UPPER case", "Calibri", 300.0, 24.0, Color.BLUE, Color.BLUE, ShapeType.TEXT_SLANT_UP);
            shape.getTextPath().setSameLetterHeights(true);
        
            // By default, the size of the text will scale to always fit the size of the containing shape, overriding the text size setting
            shape = appendWordArt(doc, "FitShape on", "Calibri", 160.0, 24.0, Color.BLUE, Color.BLUE, ShapeType.TEXT_PLAIN_TEXT);
            Assert.assertTrue(shape.getTextPath().getFitShape());
            shape.getTextPath().setSize(24.0);
        
            // If we set FitShape to false, the size of the text will defy the shape bounds and always keep the size value we set below
            // We can also set TextPathAlignment to align the text
            shape = appendWordArt(doc, "FitShape off", "Calibri", 160.0, 24.0, Color.BLUE, Color.BLUE, ShapeType.TEXT_PLAIN_TEXT);
            shape.getTextPath().setFitShape(false);
            shape.getTextPath().setSize(24.0);
            shape.getTextPath().setTextPathAlignment(TextPathAlignment.RIGHT);
        
            doc.save(getArtifactsDir() + "Shape.InsertTextPaths.docx");
        }
        
        /// <summary>
        /// Insert a new paragraph with a WordArt shape inside it.
        /// </summary>
        private Shape appendWordArt(Document doc, String text, String textFontFamily, double shapeWidth, double shapeHeight, Color wordArtFill, Color line, int wordArtShapeType) throws Exception {
            // Insert a new paragraph
            Paragraph para = (Paragraph) doc.getFirstSection().getBody().appendChild(new Paragraph(doc));
        
            // Create an inline Shape, which will serve as a container for our WordArt, and append it to the paragraph
            // The shape can only be a valid WordArt shape if the ShapeType assigned here is a WordArt-designated ShapeType
            // These types will have "WordArt object" in the description and their enumerator names will start with "Text..."
            Shape shape = new Shape(doc, wordArtShapeType);
            shape.setWrapType(WrapType.INLINE);
            para.appendChild(shape);
        
            // Set the shape's width and height
            shape.setWidth(shapeWidth);
            shape.setHeight(shapeHeight);
        
            // These color settings will apply to the letters of the displayed WordArt text
            shape.setFillColor(wordArtFill);
            shape.setStrokeColor(line);
        
            // The WordArt object is accessed here, and we will set the text and font like this
            shape.getTextPath().setText(text);
            shape.getTextPath().setFontFamily(textFontFamily);
        
            return shape;
        }
      • getLastChild

        public Node getLastChild()
        
        Gets the last child of the node. If there is no last child node, a null is returned.

        Example:

        Shows how to use of methods of Node and CompositeNode to remove a section before the last section in the document.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Create a second section by inserting a section break and add text to both sections
        builder.writeln("Section 1 text.");
        builder.insertBreak(BreakType.SECTION_BREAK_CONTINUOUS);
        builder.writeln("Section 2 text.");
        
        // Both sections are siblings of each other
        Section lastSection = (Section) doc.getLastChild();
        Section firstSection = (Section) lastSection.getPreviousSibling();
        
        // Remove a section based on its sibling relationship with another section
        if (lastSection.getPreviousSibling() != null)
            doc.removeChild(firstSection);
        
        // The section we removed was the first one, leaving the document with only the second
        Assert.assertEquals("Section 2 text.", doc.getText().trim());
      • getLeft/setLeft

        public double getLeft() / public void setLeft(double value)
        
        Gets or sets the position of the left edge of the containing block of the shape.

        For a top-level shape, the value is in points and relative to the shape anchor.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        The default value is 0.

        Has effect only for floating shapes.

        Example:

        Shows how to insert a floating image and specify its position and size.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        
        // Make position relative to the page
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        
        // Set the shape's coordinates, from the top left corner of the page
        shape.setLeft(100.0);
        shape.setTop(80.0);
        
        // Set the shape's height
        shape.setHeight(125.0);
        
        // The width will be scaled to the height and the dimensions of the real image
        Assert.assertEquals(shape.getWidth(), 125.0);
        
        // The Bottom and Right members contain the locations of the bottom and right edges of the image
        Assert.assertEquals(shape.getBottom(), shape.getTop() + shape.getHeight());
        Assert.assertEquals(shape.getRight(), shape.getLeft() + shape.getWidth());
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPositionSize.docx");
      • getMarkupLanguage

        public byte getMarkupLanguage()
        
        Gets MarkupLanguage used for this graphic object. The value of the property is ShapeMarkupLanguage integer constant.

        Example:

        Shows how get markup language for shape object in document.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        builder.insertImage(getImageDir() + "Transparent background logo.png");
        
        // Loop through all single shapes inside document
        for (Shape shape : (Iterable<Shape>) doc.getChildNodes(NodeType.SHAPE, true)) {
            Assert.assertEquals(shape.getMarkupLanguage(), ShapeMarkupLanguage.DML);
        
            System.out.println("Shape: " + shape.getMarkupLanguage());
            System.out.println("ShapeSize: " + shape.getSizeInPoints());
        }
      • getName/setName

        public java.lang.String getName() / public void setName(java.lang.String value)
        
        Gets or sets the optional shape name.

        Default is empty string.

        Cannot be null, but can be an empty string.

        Example:

        Shows how to insert shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a cube and set its name
        Shape shape = builder.insertShape(ShapeType.CUBE, 150.0, 150.0);
        shape.setName("MyCube");
        
        // We can also set the alt text like this
        // This text will be found in Format AutoShape > Alt Text
        shape.setAlternativeText("Alt text for MyCube.");
        
        // Insert a text box
        shape = builder.insertShape(ShapeType.TEXT_BOX, 300.0, 50.0);
        shape.getFont().setName("Times New Roman");
        
        // Move the builder into the text box and write text
        builder.moveTo(shape.getLastParagraph());
        builder.write("Hello world!");
        
        // Move the builder out of the text box back into the main document
        builder.moveTo(shape.getParentParagraph());
        
        // Insert a shape with an image
        shape = builder.insertImage(getImageDir() + "Logo.jpg");
        Assert.assertTrue(shape.canHaveImage());
        Assert.assertTrue(shape.hasImage());
        
        // Rotate the image
        shape.setRotation(45.0);
        
        doc.save(getArtifactsDir() + "Shape.Insert.docx");
      • getNextSibling

        public Node getNextSibling()
        
        Gets the node immediately following this node. If there is no next node, a null is returned.

        Example:

        Shows how to enumerate immediate child nodes of a composite node using NextSibling.
        Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
        // Loop starting from the first child until we reach null
        for (Node node = doc.getFirstSection().getBody().getFirstChild(); node != null; node = node.getNextSibling()) {
            // Output the types of the nodes that we come across
            System.out.println(Node.nodeTypeToString(node.getNodeType()));
        }

        Example:

        Shows how to efficiently visit all direct and indirect children of a composite node.
        public void recurseAllNodes() throws Exception {
            Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
            // Any node that can contain child nodes, such as the document itself, is composite
            Assert.assertTrue(doc.isComposite());
        
            // Invoke the recursive function that will go through and print all the child nodes of a composite node
            traverseAllNodes(doc, 0);
        }
        
        /// <summary>
        /// Recursively traverses a node tree while printing the type of each node with an indent depending on depth as well as the contents of all inline nodes.
        /// </summary>
        @Test(enabled = false)
        public void traverseAllNodes(CompositeNode parentNode, int depth) {
            // Loop through immediate children of a node
            for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) {
                System.out.println(MessageFormat.format("{0}{1}", String.format("    ", depth), Node.nodeTypeToString(childNode.getNodeType())));
        
                // Recurse into the node if it is a composite node
                if (childNode.isComposite()) {
                    System.out.println();
                    traverseAllNodes((CompositeNode) childNode, depth + 1);
                } else if (childNode instanceof Inline) {
                    System.out.println(" - \"{childNode.GetText().Trim()}\"");
                } else {
                    System.out.println();
                }
            }
        }
      • getNodeType

        public abstract int getNodeType()
        
        Gets the type of this node. The value of the property is NodeType integer constant.

        Example:

        Shows how to enumerate immediate child nodes of a composite node using NextSibling.
        Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
        // Loop starting from the first child until we reach null
        for (Node node = doc.getFirstSection().getBody().getFirstChild(); node != null; node = node.getNextSibling()) {
            // Output the types of the nodes that we come across
            System.out.println(Node.nodeTypeToString(node.getNodeType()));
        }

        Example:

        Shows how to remove all nodes of a specific type from a composite node.
        Document doc = new Document(getMyDir() + "Tables.docx");
        
        Assert.assertEquals(2, doc.getChildNodes(NodeType.TABLE, true).getCount());
        
        // Select the first child node in the body
        Node curNode = doc.getFirstSection().getBody().getFirstChild();
        
        while (curNode != null) {
            // Save the next sibling node as a variable in case we want to move to it after deleting this node
            Node nextNode = curNode.getNextSibling();
        
            // A section body can contain Paragraph and Table nodes
            // If the node is a Table, remove it from the parent
            if (curNode.getNodeType() == NodeType.TABLE) {
                curNode.remove();
            }
        
            // Continue going through child nodes until null (no more siblings) is reached
            curNode = nextNode;
        }
        
        Assert.assertEquals(0, doc.getChildNodes(NodeType.TABLE, true).getCount());

        Example:

        Shows how to efficiently visit all direct and indirect children of a composite node.
        public void recurseAllNodes() throws Exception {
            Document doc = new Document(getMyDir() + "Paragraphs.docx");
        
            // Any node that can contain child nodes, such as the document itself, is composite
            Assert.assertTrue(doc.isComposite());
        
            // Invoke the recursive function that will go through and print all the child nodes of a composite node
            traverseAllNodes(doc, 0);
        }
        
        /// <summary>
        /// Recursively traverses a node tree while printing the type of each node with an indent depending on depth as well as the contents of all inline nodes.
        /// </summary>
        @Test(enabled = false)
        public void traverseAllNodes(CompositeNode parentNode, int depth) {
            // Loop through immediate children of a node
            for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) {
                System.out.println(MessageFormat.format("{0}{1}", String.format("    ", depth), Node.nodeTypeToString(childNode.getNodeType())));
        
                // Recurse into the node if it is a composite node
                if (childNode.isComposite()) {
                    System.out.println();
                    traverseAllNodes((CompositeNode) childNode, depth + 1);
                } else if (childNode instanceof Inline) {
                    System.out.println(" - \"{childNode.GetText().Trim()}\"");
                } else {
                    System.out.println();
                }
            }
        }
      • getParentNode

        public CompositeNode getParentNode()
        
        Gets the immediate parent of this node.

        If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is null.

        Example:

        Shows how to access the parent node.
        Document doc = new Document();
        
        // Get the document's first paragraph and append a child node to it in the form of a run with text
        Paragraph para = doc.getFirstSection().getBody().getFirstParagraph();
        
        // When inserting a new node, the document that the node will belong to must be provided as an argument
        Run run = new Run(doc, "Hello world!");
        para.appendChild(run);
        
        // The node lineage can be traced back to the document itself
        Assert.assertEquals(para, run.getParentNode());
        Assert.assertEquals(doc.getFirstSection().getBody(), para.getParentNode());
        Assert.assertEquals(doc.getFirstSection(), doc.getFirstSection().getBody().getParentNode());
        Assert.assertEquals(doc, doc.getFirstSection().getParentNode());

        Example:

        Shows how to create a node and set its owning document.
        // Open a file from disk
        Document doc = new Document();
        
        // Creating a new node of any type requires a document passed into the constructor
        Paragraph para = new Paragraph(doc);
        
        // The new paragraph node does not yet have a parent
        System.out.println("Paragraph has no parent node: " + (para.getParentNode() == null));
        
        // But the paragraph node knows its document
        System.out.println("Both nodes' documents are the same: " + (para.getDocument() == doc));
        
        // The fact that a node always belongs to a document allows us to access and modify 
        // properties that reference the document-wide data such as styles or lists
        para.getParagraphFormat().setStyleName("Heading 1");
        
        // Now add the paragraph to the main text of the first section
        doc.getFirstSection().getBody().appendChild(para);
        
        // The paragraph node is now a child of the Body node
        System.out.println("Paragraph has a parent node: " + (para.getParentNode() != null));
      • getParentParagraph

        public Paragraph getParentParagraph()
        
        Returns the immediate parent paragraph. For child shapes of a group shape and child shapes of an Office Math object always returns null.

        Example:

        Shows how to insert shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a cube and set its name
        Shape shape = builder.insertShape(ShapeType.CUBE, 150.0, 150.0);
        shape.setName("MyCube");
        
        // We can also set the alt text like this
        // This text will be found in Format AutoShape > Alt Text
        shape.setAlternativeText("Alt text for MyCube.");
        
        // Insert a text box
        shape = builder.insertShape(ShapeType.TEXT_BOX, 300.0, 50.0);
        shape.getFont().setName("Times New Roman");
        
        // Move the builder into the text box and write text
        builder.moveTo(shape.getLastParagraph());
        builder.write("Hello world!");
        
        // Move the builder out of the text box back into the main document
        builder.moveTo(shape.getParentParagraph());
        
        // Insert a shape with an image
        shape = builder.insertImage(getImageDir() + "Logo.jpg");
        Assert.assertTrue(shape.canHaveImage());
        Assert.assertTrue(shape.hasImage());
        
        // Rotate the image
        shape.setRotation(45.0);
        
        doc.save(getArtifactsDir() + "Shape.Insert.docx");
      • getPreviousSibling

        public Node getPreviousSibling()
        
        Gets the node immediately preceding this node. If there is no preceding node, a null is returned.

        Example:

        Shows how to use of methods of Node and CompositeNode to remove a section before the last section in the document.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Create a second section by inserting a section break and add text to both sections
        builder.writeln("Section 1 text.");
        builder.insertBreak(BreakType.SECTION_BREAK_CONTINUOUS);
        builder.writeln("Section 2 text.");
        
        // Both sections are siblings of each other
        Section lastSection = (Section) doc.getLastChild();
        Section firstSection = (Section) lastSection.getPreviousSibling();
        
        // Remove a section based on its sibling relationship with another section
        if (lastSection.getPreviousSibling() != null)
            doc.removeChild(firstSection);
        
        // The section we removed was the first one, leaving the document with only the second
        Assert.assertEquals("Section 2 text.", doc.getText().trim());
      • getRange

        public Range getRange()
        
        Returns a Range object that represents the portion of a document that is contained in this node.

        Example:

        Shows how to delete all characters of a range.
        // Insert two sections into a blank document
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        builder.write("Section 1. ");
        builder.insertBreak(BreakType.SECTION_BREAK_CONTINUOUS);
        builder.write("Section 2.");
        
        // Verify the whole text of the document
        Assert.assertEquals("Section 1. \fSection 2.", doc.getText().trim());
        
        // Delete the first section from the document
        doc.getSections().get(0).getRange().delete();
        
        // Check the first section was deleted by looking at the text of the whole document again
        Assert.assertEquals("Section 2.", doc.getText().trim());
      • getRelativeHorizontalPosition/setRelativeHorizontalPosition

        public int getRelativeHorizontalPosition() / public void setRelativeHorizontalPosition(int value)
        
        Specifies relative to what the shape is positioned horizontally. The value of the property is RelativeHorizontalPosition integer constant.

        The default value is RelativeHorizontalPosition.COLUMN.

        Has effect only for top level floating shapes.

        Example:

        Shows how to insert a floating image in the middle of a page.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        shape.setBehindText(true);
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
        shape.setVerticalAlignment(VerticalAlignment.CENTER);
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");
      • getRelativeVerticalPosition/setRelativeVerticalPosition

        public int getRelativeVerticalPosition() / public void setRelativeVerticalPosition(int value)
        
        Specifies relative to what the shape is positioned vertically. The value of the property is RelativeVerticalPosition integer constant.

        The default value is RelativeVerticalPosition.PARAGRAPH.

        Has effect only for top level floating shapes.

        Example:

        Shows how to insert a floating image in the middle of a page.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        shape.setBehindText(true);
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
        shape.setVerticalAlignment(VerticalAlignment.CENTER);
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");
      • getRight

        public double getRight()
        
        Gets the position of the right edge of the containing block of the shape.

        For a top-level shape, the value is in points and relative to the shape anchor.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        Example:

        Shows how to insert a floating image and specify its position and size.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        
        // Make position relative to the page
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        
        // Set the shape's coordinates, from the top left corner of the page
        shape.setLeft(100.0);
        shape.setTop(80.0);
        
        // Set the shape's height
        shape.setHeight(125.0);
        
        // The width will be scaled to the height and the dimensions of the real image
        Assert.assertEquals(shape.getWidth(), 125.0);
        
        // The Bottom and Right members contain the locations of the bottom and right edges of the image
        Assert.assertEquals(shape.getBottom(), shape.getTop() + shape.getHeight());
        Assert.assertEquals(shape.getRight(), shape.getLeft() + shape.getWidth());
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPositionSize.docx");
      • getRotation/setRotation

        public double getRotation() / public void setRotation(double value)
        
        Defines the angle (in degrees) that a shape is rotated. Positive value corresponds to clockwise rotation angle.

        The default value is 0.

        Example:

        Shows how to insert shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Insert a cube and set its name
        Shape shape = builder.insertShape(ShapeType.CUBE, 150.0, 150.0);
        shape.setName("MyCube");
        
        // We can also set the alt text like this
        // This text will be found in Format AutoShape > Alt Text
        shape.setAlternativeText("Alt text for MyCube.");
        
        // Insert a text box
        shape = builder.insertShape(ShapeType.TEXT_BOX, 300.0, 50.0);
        shape.getFont().setName("Times New Roman");
        
        // Move the builder into the text box and write text
        builder.moveTo(shape.getLastParagraph());
        builder.write("Hello world!");
        
        // Move the builder out of the text box back into the main document
        builder.moveTo(shape.getParentParagraph());
        
        // Insert a shape with an image
        shape = builder.insertImage(getImageDir() + "Logo.jpg");
        Assert.assertTrue(shape.canHaveImage());
        Assert.assertTrue(shape.hasImage());
        
        // Rotate the image
        shape.setRotation(45.0);
        
        doc.save(getArtifactsDir() + "Shape.Insert.docx");
      • getScreenTip/setScreenTip

        public java.lang.String getScreenTip() / public void setScreenTip(java.lang.String value)
        
        Defines the text displayed when the mouse pointer moves over the shape.

        The default value is an empty string.

        Example:

        Shows how to insert an image with a hyperlink.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        Shape shape = builder.insertImage(getImageDir() + "Windows MetaFile.wmf");
        shape.setHRef("https://forum.aspose.com/");
        shape.setTarget("New Window");
        shape.setScreenTip("Aspose.Words Support Forums");
        
        doc.save(getArtifactsDir() + "Image.InsertImageWithHyperlink.docx");
      • getShapeType

        public int getShapeType()
        
        Gets the shape type. The value of the property is ShapeType integer constant.

        Example:

        Shows how to create a group of shapes, and print its contents using a document visitor.
        public void groupOfShapes() throws Exception {
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);
        
            // If you need to create "NonPrimitive" shapes, such as SingleCornerSnipped, TopCornersSnipped, DiagonalCornersSnipped,
            // TopCornersOneRoundedOneSnipped, SingleCornerRounded, TopCornersRounded, DiagonalCornersRounded
            // please use DocumentBuilder.InsertShape methods.
            Shape balloon = new Shape(doc, ShapeType.BALLOON);
            balloon.setWidth(200.0);
            balloon.setHeight(200.0);
            balloon.setStrokeColor(Color.RED);
        
            Shape cube = new Shape(doc, ShapeType.CUBE);
            cube.setWidth(100.0);
            cube.setHeight(100.0);
            cube.setStrokeColor(Color.BLUE);
        
            GroupShape group = new GroupShape(doc);
            group.appendChild(balloon);
            group.appendChild(cube);
        
            Assert.assertTrue(group.isGroup());
            builder.insertNode(group);
        
            ShapeInfoPrinter printer = new ShapeInfoPrinter();
            group.accept(printer);
        
            System.out.println(printer.getText());
        }
        
        /// <summary>
        /// Prints the contents of a visited shape group to the console.
        /// </summary>
        public static class ShapeInfoPrinter extends DocumentVisitor {
            public ShapeInfoPrinter() {
                mBuilder = new StringBuilder();
            }
        
            public String getText() {
                return mBuilder.toString();
            }
        
            public int visitGroupShapeStart(final GroupShape groupShape) {
                mBuilder.append("Shape group started:\r\n");
                return VisitorAction.CONTINUE;
            }
        
            public int visitGroupShapeEnd(final GroupShape groupShape) {
                mBuilder.append("End of shape group\r\n");
                return VisitorAction.CONTINUE;
            }
        
            public int visitShapeStart(final Shape shape) {
                mBuilder.append("\tShape - " + shape.getShapeType() + ":\r\n");
                mBuilder.append("\t\tWidth: " + shape.getWidth() + "\r\n");
                mBuilder.append("\t\tHeight: " + shape.getHeight() + "\r\n");
                mBuilder.append("\t\tStroke color: " + shape.getStroke().getColor() + "\r\n");
                mBuilder.append("\t\tFill color: " + shape.getFill().getColor() + "\r\n");
                return VisitorAction.CONTINUE;
            }
        
            public int visitShapeEnd(final Shape shape) {
                mBuilder.append("\tEnd of shape\r\n");
                return VisitorAction.CONTINUE;
            }
        
            private StringBuilder mBuilder;
        }
      • getSizeInPoints

        public java.awt.Dimension getSizeInPoints()
        
        Gets the size of the shape in points.

        Example:

        Shows how get markup language for shape object in document.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        builder.insertImage(getImageDir() + "Transparent background logo.png");
        
        // Loop through all single shapes inside document
        for (Shape shape : (Iterable<Shape>) doc.getChildNodes(NodeType.SHAPE, true)) {
            Assert.assertEquals(shape.getMarkupLanguage(), ShapeMarkupLanguage.DML);
        
            System.out.println("Shape: " + shape.getMarkupLanguage());
            System.out.println("ShapeSize: " + shape.getSizeInPoints());
        }
      • getTarget/setTarget

        public java.lang.String getTarget() / public void setTarget(java.lang.String value)
        
        Gets or sets the target frame for the shape hyperlink.

        The default value is an empty string.

        Example:

        Shows how to insert an image with a hyperlink.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        Shape shape = builder.insertImage(getImageDir() + "Windows MetaFile.wmf");
        shape.setHRef("https://forum.aspose.com/");
        shape.setTarget("New Window");
        shape.setScreenTip("Aspose.Words Support Forums");
        
        doc.save(getArtifactsDir() + "Image.InsertImageWithHyperlink.docx");
      • getTitle/setTitle

        public java.lang.String getTitle() / public void setTitle(java.lang.String value)
        
        Gets or sets the title (caption) of the current shape object.

        Default is empty string.

        Cannot be null, but can be an empty string.

        Example:

        Shows how to get or set title of shape object.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Create test shape
        Shape shape = new Shape(doc, ShapeType.CUBE);
        shape.setWidth(200.0);
        shape.setHeight(200.0);
        shape.setTitle("My cube");
        
        builder.insertNode(shape);
      • getTop/setTop

        public double getTop() / public void setTop(double value)
        
        Gets or sets the position of the top edge of the containing block of the shape.

        For a top-level shape, the value is in points and relative to the shape anchor.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        The default value is 0.

        Has effect only for floating shapes.

        Example:

        Shows how to insert a floating image and specify its position and size.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        
        // Make position relative to the page
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        
        // Set the shape's coordinates, from the top left corner of the page
        shape.setLeft(100.0);
        shape.setTop(80.0);
        
        // Set the shape's height
        shape.setHeight(125.0);
        
        // The width will be scaled to the height and the dimensions of the real image
        Assert.assertEquals(shape.getWidth(), 125.0);
        
        // The Bottom and Right members contain the locations of the bottom and right edges of the image
        Assert.assertEquals(shape.getBottom(), shape.getTop() + shape.getHeight());
        Assert.assertEquals(shape.getRight(), shape.getLeft() + shape.getWidth());
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPositionSize.docx");
      • getVerticalAlignment/setVerticalAlignment

        public int getVerticalAlignment() / public void setVerticalAlignment(int value)
        
        Specifies how the shape is positioned vertically. The value of the property is VerticalAlignment integer constant.

        The default value is VerticalAlignment.NONE.

        Has effect only for top level floating shapes.

        Example:

        Shows how to insert a floating image in the middle of a page.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        shape.setBehindText(true);
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
        shape.setVerticalAlignment(VerticalAlignment.CENTER);
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");
      • getWidth/setWidth

        public double getWidth() / public void setWidth(double value)
        
        Gets or sets the width of the containing block of the shape.

        For a top-level shape, the value is in points.

        For shapes in a group, the value is in the coordinate space and units of the parent group.

        The default value is 0.

        Example:

        Shows how to resize a shape with an image.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inserted at 100% scale
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Reduce the overall size of the shape by 50%
        shape.setWidth(shape.getWidth() * 0.5);
        shape.setHeight(shape.getHeight() * 0.5);
        
        Assert.assertEquals(75.0d, shape.getWidth());
        Assert.assertEquals(75.0d, shape.getHeight());
        
        // However, we can also go back to the original image size and scale from there, for example, to 110%
        ImageSize imageSize = shape.getImageData().getImageSize();
        shape.setWidth(imageSize.getWidthPoints() * 1.1);
        shape.setHeight(imageSize.getHeightPoints() * 1.1);
        
        Assert.assertEquals(330.0d, shape.getWidth());
        Assert.assertEquals(330.0d, shape.getHeight());
        
        doc.save(getArtifactsDir() + "Image.ScaleImage.docx");

        Example:

        Shows how to insert a floating image and specify its position and size.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        
        // Make position relative to the page
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        
        // Set the shape's coordinates, from the top left corner of the page
        shape.setLeft(100.0);
        shape.setTop(80.0);
        
        // Set the shape's height
        shape.setHeight(125.0);
        
        // The width will be scaled to the height and the dimensions of the real image
        Assert.assertEquals(shape.getWidth(), 125.0);
        
        // The Bottom and Right members contain the locations of the bottom and right edges of the image
        Assert.assertEquals(shape.getBottom(), shape.getTop() + shape.getHeight());
        Assert.assertEquals(shape.getRight(), shape.getLeft() + shape.getWidth());
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPositionSize.docx");
      • getWrapSide/setWrapSide

        public int getWrapSide() / public void setWrapSide(int value)
        
        Specifies how the text is wrapped around the shape. The value of the property is WrapSide integer constant.

        The default value is WrapSide.BOTH.

        Has effect only for top level shapes.

        Example:

        Shows how to replace all textboxes with images.
        Document doc = new Document(getMyDir() + "Textboxes in drawing canvas.docx");
        
        // This gets a live collection of all shape nodes in the document
        NodeCollection shapeCollection = doc.getChildNodes(NodeType.SHAPE, true);
        
        // Since we will be adding/removing nodes, it is better to copy all collection
        // into a fixed size array, otherwise iterator will be invalidated
        Node[] shapes = shapeCollection.toArray();
        
        for (Node node : shapes) {
            Shape shape = (Shape) node;
            // Filter out all shapes that we don't need
            if (shape.getShapeType() == ShapeType.TEXT_BOX) {
                // Create a new shape that will replace the existing shape
                Shape image = new Shape(doc, ShapeType.IMAGE);
        
                // Load the image into the new shape
                image.getImageData().setImage(getImageDir() + "Windows MetaFile.wmf");
        
                // Make new shape's position to match the old shape
                image.setLeft(shape.getLeft());
                image.setTop(shape.getTop());
                image.setWidth(shape.getWidth());
                image.setHeight(shape.getHeight());
                image.setRelativeHorizontalPosition(shape.getRelativeHorizontalPosition());
                image.setRelativeVerticalPosition(shape.getRelativeVerticalPosition());
                image.setHorizontalAlignment(shape.getHorizontalAlignment());
                image.setVerticalAlignment(shape.getVerticalAlignment());
                image.setWrapType(shape.getWrapType());
                image.setWrapSide(shape.getWrapSide());
        
                // Insert new shape after the old shape and remove the old shape
                shape.getParentNode().insertAfter(image, shape);
                shape.remove();
            }
        }
        
        doc.save(getArtifactsDir() + "Shape.ReplaceTextboxesWithImages.docx");
      • getWrapType/setWrapType

        public int getWrapType() / public void setWrapType(int value)
        
        Defines whether the shape is inline or floating. For floating shapes defines the wrapping mode for text around the shape. The value of the property is WrapType integer constant.

        The default value is WrapType.NONE.

        Has effect only for top level shapes.

        Example:

        Shows how to insert a floating image in the middle of a page.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // By default, the image is inline
        Shape shape = builder.insertImage(getImageDir() + "Logo.jpg");
        
        // Make the image float, put it behind text and center on the page
        shape.setWrapType(WrapType.NONE);
        shape.setBehindText(true);
        shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
        shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
        shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
        shape.setVerticalAlignment(VerticalAlignment.CENTER);
        
        doc.save(getArtifactsDir() + "Image.CreateFloatingPageCenter.docx");

        Example:

        Shows how to create a textbox with some text and different formatting options in a new document.
        Document doc = new Document();
        
        // Create a new shape of type TextBox
        Shape textBox = new Shape(doc, ShapeType.TEXT_BOX);
        
        // Set some settings of the textbox itself
        // Set the wrap of the textbox to inline
        textBox.setWrapType(WrapType.NONE);
        // Set the horizontal and vertical alignment of the text inside the shape
        textBox.setHorizontalAlignment(HorizontalAlignment.CENTER);
        textBox.setVerticalAlignment(VerticalAlignment.TOP);
        
        // Set the textbox height and width
        textBox.setHeight(50.0);
        textBox.setWidth(200.0);
        
        // Set the textbox in front of other shapes with a lower ZOrder
        textBox.setZOrder(2);
        
        // Let's create a new paragraph for the textbox manually and align it in the center
        // Make sure we add the new nodes to the textbox as well
        textBox.appendChild(new Paragraph(doc));
        Paragraph para = textBox.getFirstParagraph();
        para.getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
        
        // Add some text to the paragraph
        Run run = new Run(doc);
        run.setText("Hello world!");
        para.appendChild(run);
        
        // Append the textbox to the first paragraph in the body
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(textBox);
        
        doc.save(getArtifactsDir() + "Shape.CreateTextBox.docx");
      • getZOrder/setZOrder

        public int getZOrder() / public void setZOrder(int value)
        
        Determines the display order of overlapping shapes.

        Has effect only for top level shapes.

        The default value is 0.

        The number represents the stacking precedence. A shape with a higher number will be displayed as if it were overlapping (in "front" of) a shape with a lower number.

        The order of overlapping shapes is independent for shapes in the header and in the main text of the document.

        The display order of child shapes in a group shape is determined by their order inside the group shape.

        Example:

        Shows how to create a textbox with some text and different formatting options in a new document.
        Document doc = new Document();
        
        // Create a new shape of type TextBox
        Shape textBox = new Shape(doc, ShapeType.TEXT_BOX);
        
        // Set some settings of the textbox itself
        // Set the wrap of the textbox to inline
        textBox.setWrapType(WrapType.NONE);
        // Set the horizontal and vertical alignment of the text inside the shape
        textBox.setHorizontalAlignment(HorizontalAlignment.CENTER);
        textBox.setVerticalAlignment(VerticalAlignment.TOP);
        
        // Set the textbox height and width
        textBox.setHeight(50.0);
        textBox.setWidth(200.0);
        
        // Set the textbox in front of other shapes with a lower ZOrder
        textBox.setZOrder(2);
        
        // Let's create a new paragraph for the textbox manually and align it in the center
        // Make sure we add the new nodes to the textbox as well
        textBox.appendChild(new Paragraph(doc));
        Paragraph para = textBox.getFirstParagraph();
        para.getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
        
        // Add some text to the paragraph
        Run run = new Run(doc);
        run.setText("Hello world!");
        para.appendChild(run);
        
        // Append the textbox to the first paragraph in the body
        doc.getFirstSection().getBody().getFirstParagraph().appendChild(textBox);
        
        doc.save(getArtifactsDir() + "Shape.CreateTextBox.docx");
        See Also:
        BehindText
    • Method Detail

      • accept

        public abstract boolean accept(DocumentVisitor visitor)
                                    throws java.lang.Exception
        Accepts a visitor.

        Enumerates over this node and all of its children. Each node calls a corresponding method on DocumentVisitor.

        For more info see the Visitor design pattern.

        Parameters:
        visitor - The visitor that will visit the nodes.
        Returns:
        True if all nodes were visited; false if DocumentVisitor stopped the operation before visiting all nodes.
      • adjustWithEffects

        public java.awt.geom.Rectangle2D.Float adjustWithEffects(java.awt.geom.Rectangle2D.Float source)
        Adds to the source rectangle values of the effect extent and returns the final rectangle.

        Example:

        Shows how to check how a shape's bounds are affected by shape effects.
        // Open a document that contains two shapes and get its shape collection
        Document doc = new Document(getMyDir() + "Shape shadow effect.docx");
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(shapes.getCount(), 2);
        
        Shape firstShape = (Shape) shapes.get(0);
        Shape secondShape = (Shape) shapes.get(1);
        
        // The two shapes are identical in terms of dimensions and shape type
        Assert.assertEquals(secondShape.getWidth(), firstShape.getWidth());
        Assert.assertEquals(secondShape.getHeight(), firstShape.getHeight());
        Assert.assertEquals(secondShape.getShapeType(), firstShape.getShapeType());
        
        // However, the first shape has no effects, while the second one has a shadow and thick outline
        Assert.assertEquals(firstShape.getStrokeWeight(), 0.0);
        Assert.assertEquals(secondShape.getStrokeWeight(), 20.0);
        Assert.assertFalse(firstShape.getShadowEnabled());
        Assert.assertTrue(secondShape.getShadowEnabled());
        
        // These effects make the size of the second shape's silhouette bigger than that of the first
        // Even though the size of the rectangle that shows up when we click on these shapes in Microsoft Word is the same,
        // the practical outer bounds of the second shape are affected by the shadow and outline and are bigger
        // We can use the AdjustWithEffects method to see exactly how much bigger they are
        
        // Create a RectangleF object, which represents a rectangle, which we could potentially use as the coordinates and bounds for a shape
        Rectangle2D.Float rectangleF = new Rectangle2D.Float(200f, 200f, 1000f, 1000f);
        
        // Run this method to get the size of the rectangle adjusted for all of our shape's effects
        Rectangle2D.Float rectangleFOut = firstShape.adjustWithEffects(rectangleF);
        
        // Since the shape has no border-changing effects, its boundary dimensions are unaffected
        Assert.assertEquals(rectangleFOut.getX(), 200.0);
        Assert.assertEquals(rectangleFOut.getY(), 200.0);
        Assert.assertEquals(rectangleFOut.getWidth(), 1000.0);
        Assert.assertEquals(rectangleFOut.getHeight(), 1000.0);
        
        // The final extent of the first shape, in points
        Assert.assertEquals(firstShape.getBoundsWithEffects().getX(), 0.0);
        Assert.assertEquals(firstShape.getBoundsWithEffects().getY(), 0.0);
        Assert.assertEquals(firstShape.getBoundsWithEffects().getWidth(), 147.0);
        Assert.assertEquals(firstShape.getBoundsWithEffects().getHeight(), 147.0);
        
        // Do the same with the second shape
        rectangleF = new Rectangle2D.Float(200f, 200f, 1000f, 1000f);
        rectangleFOut = secondShape.adjustWithEffects(rectangleF);
        
        // The shape's x/y coordinates (top left corner location) have been pushed back by the thick outline
        Assert.assertEquals(rectangleFOut.getX(), 171.5);
        Assert.assertEquals(rectangleFOut.getY(), 167.0);
        
        // The width and height were also affected by the outline and shadow
        Assert.assertEquals(rectangleFOut.getWidth(), 1045.0);
        Assert.assertEquals(rectangleFOut.getHeight(), 1132.0);
        
        // These values are also affected by effects
        Assert.assertEquals(secondShape.getBoundsWithEffects().getX(), -28.5);
        Assert.assertEquals(secondShape.getBoundsWithEffects().getY(), -33.0);
        Assert.assertEquals(secondShape.getBoundsWithEffects().getWidth(), 192.0);
        Assert.assertEquals(secondShape.getBoundsWithEffects().getHeight(), 279.0);
      • appendChild

        public Node appendChild(Node newChild)
        Adds the specified node to the end of the list of child nodes for this node.

        If the newChild is already in the tree, it is first removed.

        If the node being inserted was created from another document, you should use DocumentBase.importNode(com.aspose.words.Node,boolean,int) to import the node to the current document. The imported node can then be inserted into the current document.

        Parameters:
        newChild - The node to add.
        Returns:
        The node added.

        Example:

        Shows how to construct an Aspose Words document node by node.
        Document doc = new Document();
        
        // A newly created blank document still comes one section, one body and one paragraph
        // Calling this method will remove all those nodes to completely empty the document
        doc.removeAllChildren();
        
        // This document now has no composite nodes that content can be added to
        // If we wish to edit it, we will need to repopulate its node collection,
        // which we will start to do with by creating a new Section node
        Section section = new Section(doc);
        
        // Append the section to the document
        doc.appendChild(section);
        
        // Lets set some properties for the section
        section.getPageSetup().setSectionStart(SectionStart.NEW_PAGE);
        section.getPageSetup().setPaperSize(PaperSize.LETTER);
        
        // A section needs a body, which will contain all other nodes that can be edited
        Body body = new Body(doc);
        section.appendChild(body);
        
        // The body needs to have at least one paragraph
        // Note that the paragraph has not yet been added to the document, but we have to specify the parent document
        // The parent document is needed so the paragraph can correctly work
        // with styles and other document-wide information
        Paragraph para = new Paragraph(doc);
        body.appendChild(para);
        
        // We can set some formatting for the paragraph
        para.getParagraphFormat().setStyleName("Heading 1");
        para.getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
        
        // Now we can begin adding content to the document
        Run run = new Run(doc);
        run.setText("Hello World!");
        run.getFont().setColor(Color.RED);
        para.appendChild(run);
        
        Assert.assertEquals("Hello World!" + ControlChar.SECTION_BREAK_CHAR, doc.getText());
        
        doc.save(getArtifactsDir() + "Section.CreateFromScratch.docx");
      • deepClone

        public Node deepClone(boolean isCloneChildren)
        Creates a duplicate of the node.

        This method serves as a copy constructor for nodes. The cloned node has no parent, but belongs to the same document as the original node.

        This method always performs a deep copy of the node. The isCloneChildren parameter specifies whether to perform copy all child nodes as well.

        Parameters:
        isCloneChildren - True to recursively clone the subtree under the specified node; false to clone only the node itself.
        Returns:
        The cloned node.

        Example:

        Shows how to clone composite nodes with and without their child nodes.
        Document doc = new Document();
        Paragraph para = doc.getFirstSection().getBody().getFirstParagraph();
        para.appendChild(new Run(doc, "Hello world!"));
        
        // Clone the paragraph and the child nodes
        Node cloneWithChildren = para.deepClone(true);
        
        Assert.assertTrue(((CompositeNode) cloneWithChildren).hasChildNodes());
        Assert.assertEquals("Hello world!", cloneWithChildren.getText().trim());
        
        // Clone the paragraph without its clild nodes
        Node cloneWithoutChildren = para.deepClone(false);
        
        Assert.assertFalse(((CompositeNode) cloneWithoutChildren).hasChildNodes());
        Assert.assertEquals("", cloneWithoutChildren.getText().trim());
      • fetchInheritedShapeAttr

        @Deprecated
        public java.lang.Object fetchInheritedShapeAttr(int key)
        Deprecated. Reserved for internal use.
      • fetchShapeAttr

        @Deprecated
        public java.lang.Object fetchShapeAttr(int key)
        Deprecated. Reserved for internal use.
      • getAncestor

        public CompositeNode getAncestor(int ancestorType)
        Gets the first ancestor of the specified NodeType.
        Parameters:
        ancestorType - A NodeType value. The node type of the ancestor to retrieve.
        Returns:
        The ancestor of the specified type or null if no ancestor of this type was found.

        Example:

        Shows how to find out if a table contains another table or if the table itself is nested inside another table.
        public void calculateDepthOfNestedTables() throws Exception {
            Document doc = new Document(getMyDir() + "Nested tables.docx");
            NodeCollection tables = doc.getChildNodes(NodeType.TABLE, true);
        
            for (int i = 0; i < tables.getCount(); i++) {
                // First lets find if any cells in the table have tables themselves as children
                int count = getChildTableCount((Table) tables.get(i));
                System.out.println(MessageFormat.format("Table #{0} has {1} tables directly within its cells", i, count));
        
                // Now let's try the other way around, lets try find if the table is nested inside another table and at what depth
                int tableDepth = getNestedDepthOfTable((Table) tables.get(i));
        
                if (tableDepth > 0)
                    System.out.println(MessageFormat.format("Table #{0} is nested inside another table at depth of {1}", i, tableDepth));
                else
                    System.out.println(MessageFormat.format("Table #{0} is a non nested table (is not a child of another table)", i));
            }
        }
        
        /**
         * Calculates what level a table is nested inside other tables.
         *
         * @returns An integer containing the level the table is nested at.
         * 0 = Table is not nested inside any other table
         * 1 = Table is nested within one parent table
         * 2 = Table is nested within two parent tables etc..
         */
        private static int getNestedDepthOfTable(final Table table) {
            int depth = 0;
        
            int type = table.getNodeType();
            // The parent of the table will be a Cell, instead attempt to find a grandparent that is of type Table
            Node parent = table.getAncestor(table.getNodeType());
        
            while (parent != null) {
                // Every time we find a table a level up we increase the depth counter and then try to find an
                // ancestor of type table from the parent
                depth++;
                parent = parent.getAncestor(Table.class);
            }
        
            return depth;
        }
        
        /**
         * Determines if a table contains any immediate child table within its cells.
         * Does not recursively traverse through those tables to check for further tables.
         *
         * @returns Returns true if at least one child cell contains a table.
         * Returns false if no cells in the table contains a table.
         */
        private static int getChildTableCount(final Table table) {
            int tableCount = 0;
            // Iterate through all child rows in the table
            for (Row row : table.getRows()) {
                // Iterate through all child cells in the row
                for (Cell cell : row.getCells()) {
                    // Retrieve the collection of child tables of this cell
                    TableCollection childTables = cell.getTables();
        
                    // If this cell has a table as a child then return true
                    if (childTables.getCount() > 0) tableCount++;
                }
            }
        
            // No cell contains a table
            return tableCount;
        }
      • getAncestor

        public CompositeNode getAncestor(java.lang.Class ancestorType)
        Gets the first ancestor of the specified object type.

        The ancestor type matches if it is equal to ancestorType or derived from ancestorType.

        Parameters:
        ancestorType - The object type of the ancestor to retrieve.
        Returns:
        The ancestor of the specified type or null if no ancestor of this type was found.

        Example:

        Shows how to find out if a table contains another table or if the table itself is nested inside another table.
        public void calculateDepthOfNestedTables() throws Exception {
            Document doc = new Document(getMyDir() + "Nested tables.docx");
            NodeCollection tables = doc.getChildNodes(NodeType.TABLE, true);
        
            for (int i = 0; i < tables.getCount(); i++) {
                // First lets find if any cells in the table have tables themselves as children
                int count = getChildTableCount((Table) tables.get(i));
                System.out.println(MessageFormat.format("Table #{0} has {1} tables directly within its cells", i, count));
        
                // Now let's try the other way around, lets try find if the table is nested inside another table and at what depth
                int tableDepth = getNestedDepthOfTable((Table) tables.get(i));
        
                if (tableDepth > 0)
                    System.out.println(MessageFormat.format("Table #{0} is nested inside another table at depth of {1}", i, tableDepth));
                else
                    System.out.println(MessageFormat.format("Table #{0} is a non nested table (is not a child of another table)", i));
            }
        }
        
        /**
         * Calculates what level a table is nested inside other tables.
         *
         * @returns An integer containing the level the table is nested at.
         * 0 = Table is not nested inside any other table
         * 1 = Table is nested within one parent table
         * 2 = Table is nested within two parent tables etc..
         */
        private static int getNestedDepthOfTable(final Table table) {
            int depth = 0;
        
            int type = table.getNodeType();
            // The parent of the table will be a Cell, instead attempt to find a grandparent that is of type Table
            Node parent = table.getAncestor(table.getNodeType());
        
            while (parent != null) {
                // Every time we find a table a level up we increase the depth counter and then try to find an
                // ancestor of type table from the parent
                depth++;
                parent = parent.getAncestor(Table.class);
            }
        
            return depth;
        }
        
        /**
         * Determines if a table contains any immediate child table within its cells.
         * Does not recursively traverse through those tables to check for further tables.
         *
         * @returns Returns true if at least one child cell contains a table.
         * Returns false if no cells in the table contains a table.
         */
        private static int getChildTableCount(final Table table) {
            int tableCount = 0;
            // Iterate through all child rows in the table
            for (Row row : table.getRows()) {
                // Iterate through all child cells in the row
                for (Cell cell : row.getCells()) {
                    // Retrieve the collection of child tables of this cell
                    TableCollection childTables = cell.getTables();
        
                    // If this cell has a table as a child then return true
                    if (childTables.getCount() > 0) tableCount++;
                }
            }
        
            // No cell contains a table
            return tableCount;
        }
      • getChild

        public Node getChild(int nodeType, int index, boolean isDeep)
        Returns an Nth child node that matches the specified type.

        If index is out of range, a null is returned.

        Note that markup nodes (NodeType.STRUCTURED_DOCUMENT_TAG and NodeType.SMART_TAG) are traversed even when isDeep = false and GetChild is invoked for non-markup node type. For example if the first run in a para is wrapped in a StructuredDocumentTag, it will still be returned by GetChild(NodeType.Run, 0, false).
        Parameters:
        nodeType - A NodeType value. Specifies the type of the child node.
        index - Zero based index of the child node to select. Negative indexes are also allowed and indicate access from the end, that is -1 means the last node.
        isDeep - True to select from all child nodes recursively. False to select only among immediate children. See remarks for more info.
        Returns:
        The child node that matches the criteria or null if no matching node is found.

        Example:

        Shows how to apply attributes of a table's style directly to the table's elements.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        Table table = builder.startTable();
        builder.insertCell();
        builder.write("Hello world!");
        builder.endTable();
        
        TableStyle tableStyle = (TableStyle)doc.getStyles().add(StyleType.TABLE, "MyTableStyle1");
        tableStyle.setRowStripe(3);
        tableStyle.setCellSpacing(5.0);
        tableStyle.getShading().setBackgroundPatternColor(Color.WHITE);
        tableStyle.getBorders().setColor(Color.BLUE);
        tableStyle.getBorders().setLineStyle(LineStyle.DOT_DASH);
        
        table.setStyle(tableStyle);
        
        // This method concerns table style attributes such as the ones we set above.
        doc.expandTableStylesToDirectFormatting();
        
        doc.save(getArtifactsDir() + "Document.TableStyleToDirectFormatting.docx");

        Example:

        Shows how to enumerate immediate children of a CompositeNode using the enumerator provided by the ChildNodes collection.
        Document doc = new Document();
        
        Paragraph paragraph = (Paragraph) doc.getChild(NodeType.PARAGRAPH, 0, true);
        paragraph.appendChild(new Run(doc, "Hello world!"));
        paragraph.appendChild(new Run(doc, " Hello again!"));
        
        NodeCollection children = paragraph.getChildNodes();
        
        // Paragraph may contain children of various types such as runs, shapes and so on
        for (Node child : (Iterable<Node>) children)
            if (((child.getNodeType()) == (NodeType.RUN))) {
                Run run = (Run) child;
                System.out.println(run.getText());
            }
      • getChildNodes

        public NodeCollection getChildNodes(int nodeType, boolean isDeep)
        Returns a live collection of child nodes that match the specified type.

        The collection of nodes returned by this method is always live.

        A live collection is always in sync with the document. For example, if you selected all sections in a document and enumerate through the collection deleting the sections, the section is removed from the collection immediately when it is removed from the document.

        Parameters:
        nodeType - A NodeType value. Specifies the type of nodes to select.
        isDeep - True to select from all child nodes recursively. False to select only among immediate children.
        Returns:
        A live collection of child nodes of the specified type.

        Example:

        Shows how to print all of a document's comments and their replies.
        Document doc = new Document(getMyDir() + "Comments.docx");
        
        NodeCollection comments = doc.getChildNodes(NodeType.COMMENT, true);
        
        // If a comment has no ancestor, it is a "top-level" comment as opposed to a reply-type comment.
        // Print all top-level comments along with their replies, if there are any.
        for (Comment comment : (Iterable<Comment>) comments)
        {
            if (comment.getAncestor() == null) {
                System.out.println("Top-level comment:");
                System.out.println("\t\"{comment.GetText().Trim()}\", by {comment.Author}");
                System.out.println("Has {comment.Replies.Count} replies");
                for (Comment commentReply : (Iterable<Comment>) comment.getReplies()) {
                    System.out.println("\t\"{commentReply.GetText().Trim()}\", by {commentReply.Author}");
                }
                System.out.println();
            }
        }

        Example:

        Shows how to extract images from a document, and save them to the local file system as individual files.
        Document doc = new Document(getMyDir() + "Images.docx");
        
        // Get the collection of shapes from the document,
        // and save the image data of every shape with an image as a file to the local file system.
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        
        int imageIndex = 0;
        for (Shape shape : (Iterable<Shape>) shapes) {
            if (shape.hasImage()) {
                // The image data of shapes may contain images of many possible image formats. 
                // We can determine a file extension for each image automatically, based on its format.
                String imageFileName = MessageFormat.format("File.ExtractImages.{0}{1}", imageIndex, FileFormatUtil.imageTypeToExtension(shape.getImageData().getImageType()));
                shape.getImageData().save(getArtifactsDir() + imageFileName);
                imageIndex++;
            }
        }
      • getDirectShapeAttr

        @Deprecated
        public java.lang.Object getDirectShapeAttr(int key)
        Deprecated. Reserved for internal use.
      • getShapeRenderer

        public ShapeRenderer getShapeRenderer()
                                      throws java.lang.Exception
        Creates and returns an object that can be used to render this shape into an image.

        This method just invokes the ShapeRenderer constructor and passes this object as a parameter.

        Returns:
        The renderer object for this shape.

        Example:

        Shows how to export shapes to files in the local file system using a shape renderer.
        // Open a document that contains shapes and get its shape collection
        Document doc = new Document(getMyDir() + "Various shapes.docx");
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        Assert.assertEquals(7, shapes.getCount());
        
        // There are 7 shapes in the document, with one group shape with 2 child shapes
        // The child shapes will be rendered but their parent group shape will be skipped, so we will see 6 output files
        for (Shape shape : (Iterable<Shape>) shapes) {
            ShapeRenderer renderer = shape.getShapeRenderer();
            ImageSaveOptions options = new ImageSaveOptions(SaveFormat.PNG);
            renderer.save(getArtifactsDir() + MessageFormat.format("Shape.RenderAllShapes.{0}.png", shape.getName()), options);
        }
      • getSizeInPoints

        public java.awt.geom.Point2D.Float getSizeInPoints()
        Gets the size of the shape in points.

        Point2D.Float is used as return type because we need in float dimension values here. One should to assume that Point2D's x == width and y == height.

      • getText

        public java.lang.String getText()
        Gets the text of this node and of all its children.

        The returned string includes all control and special characters as described in ControlChar.

        Example:

        Shows how to output all paragraphs in a document that are bulleted or numbered.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        builder.getListFormat().applyNumberDefault();
        builder.writeln("Numbered list item 1");
        builder.writeln("Numbered list item 2");
        builder.writeln("Numbered list item 3");
        builder.getListFormat().removeNumbers();
        
        builder.getListFormat().applyBulletDefault();
        builder.writeln("Bulleted list item 1");
        builder.writeln("Bulleted list item 2");
        builder.writeln("Bulleted list item 3");
        builder.getListFormat().removeNumbers();
        
        NodeCollection paras = doc.getChildNodes(NodeType.PARAGRAPH, true);
        for (Paragraph para : (Iterable<Paragraph>) paras) {
            if (para.getListFormat().isListItem()) {
                System.out.println(java.text.MessageFormat.format("*** A paragraph belongs to list {0}", para.getListFormat().getList().getListId()));
                System.out.println(para.getText());
            }
        }

        Example:

        Shows the difference between calling the GetText and ToString methods on a node.
        Document doc = new Document();
        
        DocumentBuilder builder = new DocumentBuilder(doc);
        builder.insertField("MERGEFIELD Field");
        
        // GetText will retrieve the visible text as well as field codes and special characters.
        Assert.assertEquals("\u0013MERGEFIELD Field\u0014«Field»\u0015\f", doc.getText());
        
        // ToString will give us the document's appearance if saved to a passed save format.
        Assert.assertEquals("«Field»\r\n", doc.toString(SaveFormat.TEXT));
      • indexOf

        public int indexOf(Node child)
        Returns the index of the specified child node in the child node array. Returns -1 if the node is not found in the child nodes.

        Example:

        Shows how to get the index of a given child node from its parent.
        Document doc = new Document(getMyDir() + "Rendering.docx");
        
        // Get the body of the first section in the document
        Body body = doc.getFirstSection().getBody();
        
        // Retrieve the index of the last paragraph in the body
        Assert.assertEquals(24, body.getChildNodes().indexOf(body.getLastParagraph()));
      • insertAfter

        public Node insertAfter(Node newChild, Node refChild)
        Inserts the specified node immediately after the specified reference node.

        If refChild is null, inserts newChild at the beginning of the list of child nodes.

        If the newChild is already in the tree, it is first removed.

        If the node being inserted was created from another document, you should use DocumentBase.importNode(com.aspose.words.Node,boolean,int) to import the node to the current document. The imported node can then be inserted into the current document.

        Parameters:
        newChild - The Node to insert.
        refChild - The Node that is the reference node. The newNode is placed after the refNode.
        Returns:
        The inserted node.

        Example:

        Shows how to replace all textboxes with images.
        Document doc = new Document(getMyDir() + "Textboxes in drawing canvas.docx");
        
        // This gets a live collection of all shape nodes in the document
        NodeCollection shapeCollection = doc.getChildNodes(NodeType.SHAPE, true);
        
        // Since we will be adding/removing nodes, it is better to copy all collection
        // into a fixed size array, otherwise iterator will be invalidated
        Node[] shapes = shapeCollection.toArray();
        
        for (Node node : shapes) {
            Shape shape = (Shape) node;
            // Filter out all shapes that we don't need
            if (shape.getShapeType() == ShapeType.TEXT_BOX) {
                // Create a new shape that will replace the existing shape
                Shape image = new Shape(doc, ShapeType.IMAGE);
        
                // Load the image into the new shape
                image.getImageData().setImage(getImageDir() + "Windows MetaFile.wmf");
        
                // Make new shape's position to match the old shape
                image.setLeft(shape.getLeft());
                image.setTop(shape.getTop());
                image.setWidth(shape.getWidth());
                image.setHeight(shape.getHeight());
                image.setRelativeHorizontalPosition(shape.getRelativeHorizontalPosition());
                image.setRelativeVerticalPosition(shape.getRelativeVerticalPosition());
                image.setHorizontalAlignment(shape.getHorizontalAlignment());
                image.setVerticalAlignment(shape.getVerticalAlignment());
                image.setWrapType(shape.getWrapType());
                image.setWrapSide(shape.getWrapSide());
        
                // Insert new shape after the old shape and remove the old shape
                shape.getParentNode().insertAfter(image, shape);
                shape.remove();
            }
        }
        
        doc.save(getArtifactsDir() + "Shape.ReplaceTextboxesWithImages.docx");

        Example:

        Shows how to add, update and delete child nodes from a CompositeNode's child collection.
        Document doc = new Document();
        
        // An empty document has one paragraph by default
        Assert.assertEquals(1, doc.getFirstSection().getBody().getParagraphs().getCount());
        
        // A paragraph is a composite node because it can contain runs, which are another type of node
        Paragraph paragraph = doc.getFirstSection().getBody().getFirstParagraph();
        Run paragraphText = new Run(doc, "Initial text. ");
        paragraph.appendChild(paragraphText);
        
        // We will place these 3 children into the main text of our paragraph
        Run run1 = new Run(doc, "Run 1. ");
        Run run2 = new Run(doc, "Run 2. ");
        Run run3 = new Run(doc, "Run 3. ");
        
        // We initialized them but not in our paragraph yet
        Assert.assertEquals("Initial text.", paragraph.getText().trim());
        
        // Insert run2 before initial paragraph text. This will be at the start of the paragraph
        paragraph.insertBefore(run2, paragraphText);
        
        // Insert run3 after initial paragraph text. This will be at the end of the paragraph
        paragraph.insertAfter(run3, paragraphText);
        
        // Insert run1 before every other child node. run2 was the start of the paragraph, now it will be run1
        paragraph.prependChild(run1);
        
        Assert.assertEquals("Run 1. Run 2. Initial text. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(4, paragraph.getChildNodes(NodeType.ANY, true).getCount());
        
        // Access the child node collection and update/delete children
        ((Run) paragraph.getChildNodes(NodeType.RUN, true).get(1)).setText("Updated run 2. ");
        paragraph.getChildNodes(NodeType.RUN, true).remove(paragraphText);
        
        Assert.assertEquals("Run 1. Updated run 2. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(3, paragraph.getChildNodes(NodeType.ANY, true).getCount());
      • insertBefore

        public Node insertBefore(Node newChild, Node refChild)
        Inserts the specified node immediately before the specified reference node.

        If refChild is null, inserts newChild at the end of the list of child nodes.

        If the newChild is already in the tree, it is first removed.

        If the node being inserted was created from another document, you should use DocumentBase.importNode(com.aspose.words.Node,boolean,int) to import the node to the current document. The imported node can then be inserted into the current document.

        Parameters:
        newChild - The Node to insert.
        refChild - The Node that is the reference node. The newChild is placed before this node.
        Returns:
        The inserted node.

        Example:

        Shows how to add, update and delete child nodes from a CompositeNode's child collection.
        Document doc = new Document();
        
        // An empty document has one paragraph by default
        Assert.assertEquals(1, doc.getFirstSection().getBody().getParagraphs().getCount());
        
        // A paragraph is a composite node because it can contain runs, which are another type of node
        Paragraph paragraph = doc.getFirstSection().getBody().getFirstParagraph();
        Run paragraphText = new Run(doc, "Initial text. ");
        paragraph.appendChild(paragraphText);
        
        // We will place these 3 children into the main text of our paragraph
        Run run1 = new Run(doc, "Run 1. ");
        Run run2 = new Run(doc, "Run 2. ");
        Run run3 = new Run(doc, "Run 3. ");
        
        // We initialized them but not in our paragraph yet
        Assert.assertEquals("Initial text.", paragraph.getText().trim());
        
        // Insert run2 before initial paragraph text. This will be at the start of the paragraph
        paragraph.insertBefore(run2, paragraphText);
        
        // Insert run3 after initial paragraph text. This will be at the end of the paragraph
        paragraph.insertAfter(run3, paragraphText);
        
        // Insert run1 before every other child node. run2 was the start of the paragraph, now it will be run1
        paragraph.prependChild(run1);
        
        Assert.assertEquals("Run 1. Run 2. Initial text. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(4, paragraph.getChildNodes(NodeType.ANY, true).getCount());
        
        // Access the child node collection and update/delete children
        ((Run) paragraph.getChildNodes(NodeType.RUN, true).get(1)).setText("Updated run 2. ");
        paragraph.getChildNodes(NodeType.RUN, true).remove(paragraphText);
        
        Assert.assertEquals("Run 1. Updated run 2. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(3, paragraph.getChildNodes(NodeType.ANY, true).getCount());
      • iterator

        public java.util.Iterator<Node> iterator()
        Provides support for the for each style iteration over the child nodes of this node.

        Example:

        Shows how to enumerate immediate children of a CompositeNode using the enumerator provided by the ChildNodes collection.
        Document doc = new Document();
        
        Paragraph paragraph = (Paragraph) doc.getChild(NodeType.PARAGRAPH, 0, true);
        paragraph.appendChild(new Run(doc, "Hello world!"));
        paragraph.appendChild(new Run(doc, " Hello again!"));
        
        NodeCollection children = paragraph.getChildNodes();
        
        // Paragraph may contain children of various types such as runs, shapes and so on
        for (Node child : (Iterable<Node>) children)
            if (((child.getNodeType()) == (NodeType.RUN))) {
                Run run = (Run) child;
                System.out.println(run.getText());
            }
      • localToParent

        public java.awt.geom.Point2D.Float localToParent(java.awt.geom.Point2D.Float value)
        Converts a value from the local coordinate space into the coordinate space of the parent shape.

        Example:

        Shows how to create and work with a group of shapes.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        GroupShape group = new GroupShape(doc);
        
        // Every GroupShape by default is a top level floating shape
        Assert.assertTrue(group.isGroup());
        Assert.assertTrue(group.isTopLevel());
        Assert.assertEquals(WrapType.NONE, group.getWrapType());
        
        // Top level shapes can have this property changed
        group.setAnchorLocked(true);
        
        // Set the XY coordinates of the shape group and the size of its containing block, as it appears on the page
        group.setBounds(new Rectangle2D.Float(100f, 50f, 200f, 100f));
        
        // Set the scale of the inner coordinates of the shape group
        // These values mean that the bottom right corner of the 200x100 outer block we set before
        // will be at x = 2000 and y = 1000, or 2000 units from the left and 1000 units from the top
        group.setCoordSize(new Dimension(2000, 1000));
        
        // The coordinate origin of a shape group is x = 0, y = 0 by default, which is the top left corner
        // If we insert a child shape and set its distance from the left to 2000 and the distance from the top to 1000,
        // its origin will be at the bottom right corner of the shape group
        // We can offset the coordinate origin by setting the CoordOrigin attribute
        // In this instance, we move the origin to the centre of the shape group
        group.setCoordOrigin(new Point(-1000, -500));
        
        // Populate the shape group with child shapes
        // First, insert a rectangle
        Shape subShape = new Shape(doc, ShapeType.RECTANGLE);
        subShape.setWidth(500.0);
        subShape.setHeight(700.0);
        
        // Place its top left corner at the parent group's coordinate origin, which is currently at its centre
        subShape.setLeft(0.0);
        subShape.setTop(0.0);
        
        // Add the rectangle to the group
        group.appendChild(subShape);
        
        // Insert a triangle
        subShape = new Shape(doc, ShapeType.TRIANGLE);
        subShape.setWidth(400.0);
        subShape.setHeight(400.0);
        
        // Place its origin at the bottom right corner of the group
        subShape.setLeft(1000.0);
        subShape.setTop(500.0);
        
        // The offset between this child shape and parent group can be seen here
        Assert.assertEquals(subShape.localToParent(new Point2D.Float(0f, 0f)), new Point2D.Float(1000f, 500f));
        
        // Add the triangle to the group
        group.appendChild(subShape);
        
        // Child shapes of a group shape are not top level
        Assert.assertFalse(subShape.isTopLevel());
        
        // Finally, insert the group into the document and save
        builder.insertNode(group);
        doc.save(getArtifactsDir() + "Shape.InsertGroupShape.docx");
      • nextPreOrder

        public Node nextPreOrder(Node rootNode)
        Gets next node according to the pre-order tree traversal algorithm.
        Parameters:
        rootNode - The top node (limit) of traversal.
        Returns:
        Next node in pre-order order. Null if reached the rootNode.

        Example:

        Shows how to delete all images from a document using pre-order tree traversal.
        Document doc = new Document(getMyDir() + "Images.docx");
        Assert.assertEquals(doc.getChildNodes(NodeType.SHAPE, true).getCount(), 10);
        
        Node curNode = doc;
        while (curNode != null) {
            Node nextNode = curNode.nextPreOrder(doc);
        
            if (curNode.previousPreOrder(doc) != null && nextNode != null) {
                Assert.assertEquals(curNode, nextNode.previousPreOrder(doc));
            }
        
            if (curNode.getNodeType() == NodeType.SHAPE) {
                Shape shape = (Shape) curNode;
        
                // Several shape types can have an image including image shapes and OLE objects
                if (shape.hasImage()) {
                    shape.remove();
                }
            }
        
            curNode = nextNode;
        }
        
        // The only remaining shape doesn't have an image
        Assert.assertEquals(1, doc.getChildNodes(NodeType.SHAPE, true).getCount());
        Assert.assertFalse(((Shape) doc.getChild(NodeType.SHAPE, 0, true)).hasImage());
      • prependChild

        public Node prependChild(Node newChild)
        Adds the specified node to the beginning of the list of child nodes for this node.

        If the newChild is already in the tree, it is first removed.

        If the node being inserted was created from another document, you should use DocumentBase.importNode(com.aspose.words.Node,boolean,int) to import the node to the current document. The imported node can then be inserted into the current document.

        Parameters:
        newChild - The node to add.
        Returns:
        The node added.

        Example:

        Shows how to add, update and delete child nodes from a CompositeNode's child collection.
        Document doc = new Document();
        
        // An empty document has one paragraph by default
        Assert.assertEquals(1, doc.getFirstSection().getBody().getParagraphs().getCount());
        
        // A paragraph is a composite node because it can contain runs, which are another type of node
        Paragraph paragraph = doc.getFirstSection().getBody().getFirstParagraph();
        Run paragraphText = new Run(doc, "Initial text. ");
        paragraph.appendChild(paragraphText);
        
        // We will place these 3 children into the main text of our paragraph
        Run run1 = new Run(doc, "Run 1. ");
        Run run2 = new Run(doc, "Run 2. ");
        Run run3 = new Run(doc, "Run 3. ");
        
        // We initialized them but not in our paragraph yet
        Assert.assertEquals("Initial text.", paragraph.getText().trim());
        
        // Insert run2 before initial paragraph text. This will be at the start of the paragraph
        paragraph.insertBefore(run2, paragraphText);
        
        // Insert run3 after initial paragraph text. This will be at the end of the paragraph
        paragraph.insertAfter(run3, paragraphText);
        
        // Insert run1 before every other child node. run2 was the start of the paragraph, now it will be run1
        paragraph.prependChild(run1);
        
        Assert.assertEquals("Run 1. Run 2. Initial text. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(4, paragraph.getChildNodes(NodeType.ANY, true).getCount());
        
        // Access the child node collection and update/delete children
        ((Run) paragraph.getChildNodes(NodeType.RUN, true).get(1)).setText("Updated run 2. ");
        paragraph.getChildNodes(NodeType.RUN, true).remove(paragraphText);
        
        Assert.assertEquals("Run 1. Updated run 2. Run 3.", paragraph.getText().trim());
        Assert.assertEquals(3, paragraph.getChildNodes(NodeType.ANY, true).getCount());
      • previousPreOrder

        public Node previousPreOrder(Node rootNode)
        Gets the previous node according to the pre-order tree traversal algorithm.
        Parameters:
        rootNode - The top node (limit) of traversal.
        Returns:
        Previous node in pre-order order. Null if reached the rootNode.

        Example:

        Shows how to delete all images from a document using pre-order tree traversal.
        Document doc = new Document(getMyDir() + "Images.docx");
        Assert.assertEquals(doc.getChildNodes(NodeType.SHAPE, true).getCount(), 10);
        
        Node curNode = doc;
        while (curNode != null) {
            Node nextNode = curNode.nextPreOrder(doc);
        
            if (curNode.previousPreOrder(doc) != null && nextNode != null) {
                Assert.assertEquals(curNode, nextNode.previousPreOrder(doc));
            }
        
            if (curNode.getNodeType() == NodeType.SHAPE) {
                Shape shape = (Shape) curNode;
        
                // Several shape types can have an image including image shapes and OLE objects
                if (shape.hasImage()) {
                    shape.remove();
                }
            }
        
            curNode = nextNode;
        }
        
        // The only remaining shape doesn't have an image
        Assert.assertEquals(1, doc.getChildNodes(NodeType.SHAPE, true).getCount());
        Assert.assertFalse(((Shape) doc.getChild(NodeType.SHAPE, 0, true)).hasImage());
      • remove

        public void remove()
        Removes itself from the parent.

        Example:

        Shows how to delete all images from a document.
        Document doc = new Document(getMyDir() + "Images.docx");
        Assert.assertEquals(doc.getChildNodes(NodeType.SHAPE, true).getCount(), 10);
        
        // Here we get all shapes from the document node, but you can do this for any smaller
        // node too, for example delete shapes from a single section or a paragraph
        NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
        
        // We cannot delete shape nodes while we enumerate through the collection
        // One solution is to add nodes that we want to delete to a temporary array and delete afterwards
        ArrayList shapesToDelete = new ArrayList();
        for (Shape shape : (Iterable<Shape>) shapes) {
            // Several shape types can have an image including image shapes and OLE objects
            if (shape.hasImage()) {
                shapesToDelete.add(shape);
            }
        }
        
        // Now we can delete shapes
        for (Shape shape : (Iterable<Shape>) shapesToDelete)
            shape.remove();
        
        // The only remaining shape doesn't have an image
        Assert.assertEquals(1, doc.getChildNodes(NodeType.SHAPE, true).getCount());
        Assert.assertFalse(((Shape) doc.getChild(NodeType.SHAPE, 0, true)).hasImage());

        Example:

        Shows how to remove all nodes of a specific type from a composite node.
        Document doc = new Document(getMyDir() + "Tables.docx");
        
        Assert.assertEquals(2, doc.getChildNodes(NodeType.TABLE, true).getCount());
        
        // Select the first child node in the body
        Node curNode = doc.getFirstSection().getBody().getFirstChild();
        
        while (curNode != null) {
            // Save the next sibling node as a variable in case we want to move to it after deleting this node
            Node nextNode = curNode.getNextSibling();
        
            // A section body can contain Paragraph and Table nodes
            // If the node is a Table, remove it from the parent
            if (curNode.getNodeType() == NodeType.TABLE) {
                curNode.remove();
            }
        
            // Continue going through child nodes until null (no more siblings) is reached
            curNode = nextNode;
        }
        
        Assert.assertEquals(0, doc.getChildNodes(NodeType.TABLE, true).getCount());
      • removeAllChildren

        public void removeAllChildren()
        Removes all the child nodes of the current node.

        Example:

        Shows how to construct an Aspose Words document node by node.
        Document doc = new Document();
        
        // A newly created blank document still comes one section, one body and one paragraph
        // Calling this method will remove all those nodes to completely empty the document
        doc.removeAllChildren();
        
        // This document now has no composite nodes that content can be added to
        // If we wish to edit it, we will need to repopulate its node collection,
        // which we will start to do with by creating a new Section node
        Section section = new Section(doc);
        
        // Append the section to the document
        doc.appendChild(section);
        
        // Lets set some properties for the section
        section.getPageSetup().setSectionStart(SectionStart.NEW_PAGE);
        section.getPageSetup().setPaperSize(PaperSize.LETTER);
        
        // A section needs a body, which will contain all other nodes that can be edited
        Body body = new Body(doc);
        section.appendChild(body);
        
        // The body needs to have at least one paragraph
        // Note that the paragraph has not yet been added to the document, but we have to specify the parent document
        // The parent document is needed so the paragraph can correctly work
        // with styles and other document-wide information
        Paragraph para = new Paragraph(doc);
        body.appendChild(para);
        
        // We can set some formatting for the paragraph
        para.getParagraphFormat().setStyleName("Heading 1");
        para.getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
        
        // Now we can begin adding content to the document
        Run run = new Run(doc);
        run.setText("Hello World!");
        run.getFont().setColor(Color.RED);
        para.appendChild(run);
        
        Assert.assertEquals("Hello World!" + ControlChar.SECTION_BREAK_CHAR, doc.getText());
        
        doc.save(getArtifactsDir() + "Section.CreateFromScratch.docx");
      • removeChild

        public Node removeChild(Node oldChild)
        Removes the specified child node.

        The parent of oldChild is set to null after the node is removed.

        Parameters:
        oldChild - The node to remove.
        Returns:
        The removed node.

        Example:

        Shows how to use of methods of Node and CompositeNode to remove a section before the last section in the document.
        Document doc = new Document();
        DocumentBuilder builder = new DocumentBuilder(doc);
        
        // Create a second section by inserting a section break and add text to both sections
        builder.writeln("Section 1 text.");
        builder.insertBreak(BreakType.SECTION_BREAK_CONTINUOUS);
        builder.writeln("Section 2 text.");
        
        // Both sections are siblings of each other
        Section lastSection = (Section) doc.getLastChild();
        Section firstSection = (Section) lastSection.getPreviousSibling();
        
        // Remove a section based on its sibling relationship with another section
        if (lastSection.getPreviousSibling() != null)
            doc.removeChild(firstSection);
        
        // The section we removed was the first one, leaving the document with only the second
        Assert.assertEquals("Section 2 text.", doc.getText().trim());
      • removeShapeAttr

        @Deprecated
        public void removeShapeAttr(int key)
        Deprecated. Reserved for internal use.
      • removeSmartTags

        public void removeSmartTags()
        Removes all SmartTag descendant nodes of the current node. This method does not remove the content of the smart tags.

        Example:

        Removes all smart tags from descendant nodes of the composite node.
        Document doc = new Document(getMyDir() + "Smart tags.doc");
        Assert.assertEquals(8, doc.getChildNodes(NodeType.SMART_TAG, true).getCount());
        
        // Remove smart tags from the whole document
        doc.removeSmartTags();
        
        Assert.assertEquals(0, doc.getChildNodes(NodeType.SMART_TAG, true).getCount());
      • selectNodes

        public NodeList selectNodes(java.lang.String xpath)
        Selects a list of nodes matching the XPath expression.

        Only expressions with element names are supported at the moment. Expressions that use attribute names are not supported.

        Parameters:
        xpath - The XPath expression.
        Returns:
        A list of nodes matching the XPath query.

        Example:

        Shows how to select certain nodes by using an XPath expression.
        Document doc = new Document(getMyDir() + "Tables.docx");
        
        // This expression will extract all paragraph nodes which are descendants of any table node in the document
        // This will return any paragraphs which are in a table
        NodeList nodeList = doc.selectNodes("//Table//Paragraph");
        
        // Iterate through the list with an enumerator and print the contents of every paragraph in each cell of the table
        int index = 0;
        
        Iterator<Node> e = nodeList.iterator();
        while (e.hasNext()) {
            Node currentNode = e.next();
            System.out.println(MessageFormat.format("Table paragraph index {0}, contents: \"{1}\"", index++, currentNode.getText().trim()));
        }
        
        // This expression will select any paragraphs that are direct children of any body node in the document
        nodeList = doc.selectNodes("//Body/Paragraph");
        
        // We can treat the list as an array too
        Assert.assertEquals(nodeList.toArray().length, 4);
        
        // Use SelectSingleNode to select the first result of the same expression as above
        Node node = doc.selectSingleNode("//Body/Paragraph");
        
        Assert.assertEquals(Paragraph.class, node.getClass());

        Example:

        Shows how to test if a node is inside a field by using an XPath expression.
        Document doc = new Document(getMyDir() + "Mail merge destination - Northwind employees.docx");
        
        // Evaluate the XPath expression. The resulting NodeList will contain all nodes found inside a field a field (between FieldStart 
        // and FieldEnd exclusive). There can however be FieldStart and FieldEnd nodes in the list if there are nested fields 
        // in the path. Currently does not find rare fields in which the FieldCode or FieldResult spans across multiple paragraphs
        NodeList resultList =
                doc.selectNodes("//FieldStart/following-sibling::node()[following-sibling::FieldEnd]");
        
        // Check if the specified run is one of the nodes that are inside the field
        System.out.println("Contents of the first Run node that's part of a field: {resultList.First(n => n.NodeType == NodeType.Run).GetText().Trim()}");
      • selectSingleNode

        public Node selectSingleNode(java.lang.String xpath)
        Selects the first Node that matches the XPath expression.

        Only expressions with element names are supported at the moment. Expressions that use attribute names are not supported.

        Parameters:
        xpath - The XPath expression.
        Returns:
        The first Node that matches the XPath query or null if no matching node is found.

        Example:

        Shows how to select certain nodes by using an XPath expression.
        Document doc = new Document(getMyDir() + "Tables.docx");
        
        // This expression will extract all paragraph nodes which are descendants of any table node in the document
        // This will return any paragraphs which are in a table
        NodeList nodeList = doc.selectNodes("//Table//Paragraph");
        
        // Iterate through the list with an enumerator and print the contents of every paragraph in each cell of the table
        int index = 0;
        
        Iterator<Node> e = nodeList.iterator();
        while (e.hasNext()) {
            Node currentNode = e.next();
            System.out.println(MessageFormat.format("Table paragraph index {0}, contents: \"{1}\"", index++, currentNode.getText().trim()));
        }
        
        // This expression will select any paragraphs that are direct children of any body node in the document
        nodeList = doc.selectNodes("//Body/Paragraph");
        
        // We can treat the list as an array too
        Assert.assertEquals(nodeList.toArray().length, 4);
        
        // Use SelectSingleNode to select the first result of the same expression as above
        Node node = doc.selectSingleNode("//Body/Paragraph");
        
        Assert.assertEquals(Paragraph.class, node.getClass());
      • setShapeAttr

        @Deprecated
        public void setShapeAttr(int key, java.lang.Object value)
        Deprecated. Reserved for internal use.
      • toString

        public java.lang.String toString(SaveOptions saveOptions)
                       throws java.lang.Exception
        Exports the content of the node into a string using the specified save options.
        Parameters:
        saveOptions - Specifies the options that control how the node is saved.
        Returns:
        The content of the node in the specified format.

        Example:

        Exports the content of a node to String in HTML format.
        Document doc = new Document(getMyDir() + "Document.docx");
        
        // Extract the last paragraph in the document to convert to HTML
        Node node = doc.getLastSection().getBody().getLastParagraph();
        
        // When ToString is called using the html SaveFormat overload then the node is converted directly to html
        Assert.assertEquals("<p style=\"margin-top:0pt; margin-bottom:8pt; line-height:108%; font-size:12pt\">" +
                "<span style=\"font-family:'Times New Roman'\">Hello World!</span>" +
                "</p>", node.toString(SaveFormat.HTML));
        
        // We can also modify the result of this conversion using a SaveOptions object
        HtmlSaveOptions saveOptions = new HtmlSaveOptions();
        saveOptions.setExportRelativeFontSize(true);
        
        Assert.assertEquals("<p style=\"margin-top:0pt; margin-bottom:8pt; line-height:108%\">" +
                "<span style=\"font-family:'Times New Roman'\">Hello World!</span>" +
                "</p>", node.toString(saveOptions));
      • toString

        public java.lang.String toString(int saveFormat)
                       throws java.lang.Exception
        Exports the content of the node into a string in the specified format.
        Returns:
        The content of the node in the specified format.
        Parameters:
        saveFormat - A SaveFormat value.

        Example:

        Shows how to extract the label of each paragraph in a list as a value or a String.
        Document doc = new Document(getMyDir() + "Rendering.docx");
        doc.updateListLabels();
        int listParaCount = 1;
        
        for (Paragraph paragraph : (Iterable<Paragraph>) doc.getChildNodes(NodeType.PARAGRAPH, true)) {
            // Find if we have the paragraph list. In our document our list uses plain arabic numbers,
            // which start at three and ends at six
            if (paragraph.getListFormat().isListItem()) {
                System.out.println(MessageFormat.format("List item paragraph #{0}", listParaCount));
        
                // This is the text we get when actually getting when we output this node to text format
                // The list labels are not included in this text output. Trim any paragraph formatting characters
                String paragraphText = paragraph.toString(SaveFormat.TEXT).trim();
                System.out.println("Exported Text: " + paragraphText);
        
                ListLabel label = paragraph.getListLabel();
                // This gets the position of the paragraph in current level of the list. If we have a list with multiple level then this
                // will tell us what position it is on that particular level
                System.out.println("\tNumerical Id: " + label.getLabelValue());
        
                // Combine them together to include the list label with the text in the output
                System.out.println("\tList label combined with text: " + label.getLabelString() + " " + paragraphText);
        
                listParaCount++;
            }
        }

        Example:

        Exports the content of a node to String in HTML format.
        Document doc = new Document(getMyDir() + "Document.docx");
        
        // Extract the last paragraph in the document to convert to HTML
        Node node = doc.getLastSection().getBody().getLastParagraph();
        
        // When ToString is called using the html SaveFormat overload then the node is converted directly to html
        Assert.assertEquals("<p style=\"margin-top:0pt; margin-bottom:8pt; line-height:108%; font-size:12pt\">" +
                "<span style=\"font-family:'Times New Roman'\">Hello World!</span>" +
                "</p>", node.toString(SaveFormat.HTML));
        
        // We can also modify the result of this conversion using a SaveOptions object
        HtmlSaveOptions saveOptions = new HtmlSaveOptions();
        saveOptions.setExportRelativeFontSize(true);
        
        Assert.assertEquals("<p style=\"margin-top:0pt; margin-bottom:8pt; line-height:108%\">" +
                "<span style=\"font-family:'Times New Roman'\">Hello World!</span>" +
                "</p>", node.toString(saveOptions));

        Example:

        Shows the difference between calling the GetText and ToString methods on a node.
        Document doc = new Document();
        
        DocumentBuilder builder = new DocumentBuilder(doc);
        builder.insertField("MERGEFIELD Field");
        
        // GetText will retrieve the visible text as well as field codes and special characters.
        Assert.assertEquals("\u0013MERGEFIELD Field\u0014«Field»\u0015\f", doc.getText());
        
        // ToString will give us the document's appearance if saved to a passed save format.
        Assert.assertEquals("«Field»\r\n", doc.toString(SaveFormat.TEXT));