public abstract class ShapeBase
This is an abstract class. The two derived classes that you can instantiate
are
A shape is a node in the document tree.
If the shape is a child of a
A shape can also occur as a child of a
A shape can be positioned inline with text or floating. The positioning method is controlled
using the
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
A floating shape be positioned explicitly using the
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");
Property Getters/Setters Summary | ||
---|---|---|
boolean | getAllowOverlap() | |
void | setAllowOverlap(booleanvalue) | |
Gets or sets a value that specifies whether this shape can overlap other shapes. | ||
java.lang.String | getAlternativeText() | |
void | setAlternativeText(java.lang.Stringvalue) | |
Defines alternative text to be displayed instead of a graphic. | ||
boolean | getAnchorLocked() | |
void | setAnchorLocked(booleanvalue) | |
Specifies whether the shape's anchor is locked. | ||
boolean | getAspectRatioLocked() | |
void | setAspectRatioLocked(booleanvalue) | |
Specifies whether the shape's aspect ratio is locked. | ||
boolean | getBehindText() | |
void | setBehindText(booleanvalue) | |
Specifies whether the shape is below or above text. | ||
double | getBottom() | |
Gets the position of the bottom edge of the containing block of the shape.
|
||
java.awt.geom.Rectangle2D.Float | getBounds() | |
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.Float | getBoundsInPoints() | |
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.Float | getBoundsWithEffects() | |
Gets final extent that this shape object has after applying drawing effects.
Value is measured in points.
|
||
boolean | canHaveImage() | |
Returns true if the shape type allows the shape to have an image.
|
||
NodeCollection | getChildNodes() | |
Gets all immediate child nodes of this node.
|
||
java.awt.Point | getCoordOrigin() | |
void | setCoordOrigin(java.awt.Pointvalue) | |
The coordinates at the top-left corner of the containing block of this shape. | ||
java.awt.Dimension | getCoordSize() | |
void | setCoordSize(java.awt.Dimensionvalue) | |
The width and height of the coordinate space inside the containing block of this shape. | ||
int | getCount() | |
Gets the number of immediate children of this node.
|
||
double | getDistanceBottom() | |
void | setDistanceBottom(doublevalue) | |
Returns or sets the distance (in points) between the document text and the bottom edge of the shape. | ||
double | getDistanceLeft() | |
void | setDistanceLeft(doublevalue) | |
Returns or sets the distance (in points) between the document text and the left edge of the shape. | ||
double | getDistanceRight() | |
void | setDistanceRight(doublevalue) | |
Returns or sets the distance (in points) between the document text and the right edge of the shape. | ||
double | getDistanceTop() | |
void | setDistanceTop(doublevalue) | |
Returns or sets the distance (in points) between the document text and the top edge of the shape. | ||
DocumentBase | getDocument() | |
Gets the document to which this node belongs.
|
||
Node | getFirstChild() | |
Gets the first child of the node.
|
||
int | getFlipOrientation() | |
void | setFlipOrientation(intvalue) | |
Switches the orientation of a shape. The value of the property is FlipOrientation integer constant. | ||
Font | getFont() | |
Provides access to the font formatting of this object.
|
||
boolean | hasChildNodes() | |
Returns true if this node has any child nodes.
|
||
double | getHeight() | |
void | setHeight(doublevalue) | |
Gets or sets the height of the containing block of the shape. | ||
int | getHorizontalAlignment() | |
void | setHorizontalAlignment(intvalue) | |
Specifies how the shape is positioned horizontally. The value of the property is HorizontalAlignment integer constant. | ||
java.lang.String | getHRef() | |
void | setHRef(java.lang.Stringvalue) | |
Gets or sets the full hyperlink address for a shape. | ||
boolean | isComposite() | |
Returns true as this node can have child nodes.
|
||
boolean | isDeleteRevision() | |
Returns true if this object was deleted in Microsoft Word while change tracking was enabled.
|
||
boolean | isGroup() | |
Returns true if this is a group shape.
|
||
boolean | isHorizontalRule() | |
Returns true if this shape is a horizontal rule.
|
||
boolean | isImage() | |
Returns true if this shape is an image shape.
|
||
boolean | isInline() | |
A quick way to determine if this shape is positioned inline with text.
|
||
boolean | isInsertRevision() | |
Returns true if this object was inserted in Microsoft Word while change tracking was enabled.
|
||
boolean | isLayoutInCell() | |
void | isLayoutInCell(booleanvalue) | |
Gets or sets a flag indicating whether the shape is displayed inside a table or outside of it. | ||
boolean | isMoveFromRevision() | |
Returns true if this object was moved (deleted) in Microsoft Word while change tracking was enabled.
|
||
boolean | isMoveToRevision() | |
Returns true if this object was moved (inserted) in Microsoft Word while change tracking was enabled.
|
||
boolean | isSignatureLine() | |
Indicates that shape is a SignatureLine.
|
||
boolean | isTopLevel() | |
Returns true if this shape is not a child of a group shape.
|
||
boolean | isWordArt() | |
Returns true if this shape is a WordArt object.
|
||
Node | getLastChild() | |
Gets the last child of the node.
|
||
double | getLeft() | |
void | setLeft(doublevalue) | |
Gets or sets the position of the left edge of the containing block of the shape. | ||
byte | getMarkupLanguage() | |
Gets MarkupLanguage used for this graphic object.
The value of the property is ShapeMarkupLanguage integer constant. |
||
java.lang.String | getName() | |
void | setName(java.lang.Stringvalue) | |
Gets or sets the optional shape name. | ||
Node | getNextSibling() | |
Gets the node immediately following this node.
|
||
abstract int | getNodeType() | |
Gets the type of this node.
The value of the property is NodeType integer constant. |
||
CompositeNode | getParentNode() | |
Gets the immediate parent of this node.
|
||
Paragraph | getParentParagraph() | |
Returns the immediate parent paragraph.
|
||
Node | getPreviousSibling() | |
Gets the node immediately preceding this node.
|
||
Range | getRange() | |
Returns a Range object that represents the portion of a document that is contained in this node.
|
||
int | getRelativeHorizontalPosition() | |
void | setRelativeHorizontalPosition(intvalue) | |
Specifies relative to what the shape is positioned horizontally. The value of the property is RelativeHorizontalPosition integer constant. | ||
int | getRelativeVerticalPosition() | |
void | setRelativeVerticalPosition(intvalue) | |
Specifies relative to what the shape is positioned vertically. The value of the property is RelativeVerticalPosition integer constant. | ||
double | getRight() | |
Gets the position of the right edge of the containing block of the shape.
|
||
double | getRotation() | |
void | setRotation(doublevalue) | |
Defines the angle (in degrees) that a shape is rotated. Positive value corresponds to clockwise rotation angle. | ||
java.lang.String | getScreenTip() | |
void | setScreenTip(java.lang.Stringvalue) | |
Defines the text displayed when the mouse pointer moves over the shape. | ||
int | getShapeType() | |
Gets the shape type.
The value of the property is ShapeType integer constant. |
||
java.awt.Dimension | getSizeInPoints() | |
Gets the size of the shape in points.
|
||
java.lang.String | getTarget() | |
void | setTarget(java.lang.Stringvalue) | |
Gets or sets the target frame for the shape hyperlink. | ||
java.lang.String | getTitle() | |
void | setTitle(java.lang.Stringvalue) | |
Gets or sets the title (caption) of the current shape object. | ||
double | getTop() | |
void | setTop(doublevalue) | |
Gets or sets the position of the top edge of the containing block of the shape. | ||
int | getVerticalAlignment() | |
void | setVerticalAlignment(intvalue) | |
Specifies how the shape is positioned vertically. The value of the property is VerticalAlignment integer constant. | ||
double | getWidth() | |
void | setWidth(doublevalue) | |
Gets or sets the width of the containing block of the shape. | ||
int | getWrapSide() | |
void | setWrapSide(intvalue) | |
Specifies how the text is wrapped around the shape. The value of the property is WrapSide integer constant. | ||
int | getWrapType() | |
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. | ||
int | getZOrder() | |
void | setZOrder(intvalue) | |
Determines the display order of overlapping shapes. |
Method Summary | ||
---|---|---|
abstract boolean | accept(DocumentVisitor visitor) | |
Accepts a visitor.
|
||
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.
|
||
Node | appendChild(Node newChild) | |
Adds the specified node to the end of the list of child nodes for this node.
|
||
Node | deepClone(boolean isCloneChildren) | |
Creates a duplicate of the node.
|
||
java.lang.Object | fetchInheritedShapeAttr(int key) | |
Deprecated. Reserved for internal use. |
||
java.lang.Object | fetchShapeAttr(int key) | |
Deprecated. Reserved for internal use. |
||
CompositeNode | getAncestor(int ancestorType) | |
Gets the first ancestor of the specified |
||
CompositeNode | getAncestor(java.lang.Class ancestorType) | |
Gets the first ancestor of the specified object type.
|
||
Node | getChild(int nodeType, int index, boolean isDeep) | |
Returns an Nth child node that matches the specified type.
|
||
NodeCollection | getChildNodes(int nodeType, boolean isDeep) | |
Returns a live collection of child nodes that match the specified type.
|
||
java.lang.Object | getDirectShapeAttr(int key) | |
Deprecated. Reserved for internal use. |
||
ShapeRenderer | getShapeRenderer() | |
Creates and returns an object that can be used to render this shape into an image.
|
||
java.awt.geom.Point2D.Float | getSizeInPoints() | |
Gets the size of the shape in points.
|
||
java.lang.String | getText() | |
Gets the text of this node and of all its children.
|
||
int | indexOf(Node child) | |
Returns the index of the specified child node in the child node array.
|
||
Node | insertAfter(Node newChild, Node refChild) | |
Inserts the specified node immediately after the specified reference node.
|
||
Node | insertBefore(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.Float | localToParent(java.awt.geom.Point2D.Float value) | |
Converts a value from the local coordinate space into the coordinate space of the parent shape.
|
||
Node | nextPreOrder(Node rootNode) | |
Gets next node according to the pre-order tree traversal algorithm.
|
||
Node | prependChild(Node newChild) | |
Adds the specified node to the beginning of the list of child nodes for this node.
|
||
Node | previousPreOrder(Node rootNode) | |
Gets the previous node according to the pre-order tree traversal algorithm.
|
||
void | remove() | |
Removes itself from the parent.
|
||
void | removeAllChildren() | |
Removes all the child nodes of the current node.
|
||
Node | removeChild(Node oldChild) | |
Removes the specified child node.
|
||
void | removeShapeAttr(int key) | |
Deprecated. Reserved for internal use. |
||
void | removeSmartTags() | |
Removes all |
||
NodeList | selectNodes(java.lang.String xpath) | |
Selects a list of nodes matching the XPath expression.
|
||
Node | selectSingleNode(java.lang.String xpath) | |
Selects the first Node that matches the XPath expression.
|
||
void | setShapeAttr(int key, java.lang.Object value) | |
Deprecated. Reserved for internal use. |
||
java.lang.String | toString(SaveOptions saveOptions) | |
Exports the content of the node into a string using the specified save options.
|
||
java.lang.String | toString(int saveFormat) | |
Exports the content of the node into a string in the specified format.
|
public boolean getAllowOverlap() / public void setAllowOverlap(boolean value)
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); }
public java.lang.String getAlternativeText() / public void setAlternativeText(java.lang.String value)
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");
public boolean getAnchorLocked() / public void setAnchorLocked(boolean value)
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");
public boolean getAspectRatioLocked() / public void setAspectRatioLocked(boolean value)
The default value depends on the
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);
public boolean getBehindText() / public void setBehindText(boolean value)
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");
public double getBottom()
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");
public java.awt.geom.Rectangle2D.Float getBounds() / public void setBounds(java.awt.geom.Rectangle2D.Float value)
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");
public java.awt.geom.Rectangle2D.Float getBoundsInPoints()
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");
public java.awt.geom.Rectangle2D.Float getBoundsWithEffects()
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);
public boolean canHaveImage()
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
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");
public NodeCollection getChildNodes()
Note, 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()); }
public java.awt.Point getCoordOrigin() / public void setCoordOrigin(java.awt.Point value)
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");
public java.awt.Dimension getCoordSize() / public void setCoordSize(java.awt.Dimension value)
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");
public int getCount()
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());
public double getDistanceBottom() / public void setDistanceBottom(double value)
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");
public double getDistanceLeft() / public void setDistanceLeft(double value)
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");
public double getDistanceRight() / public void setDistanceRight(double value)
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");
public double getDistanceTop() / public void setDistanceTop(double value)
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");
public DocumentBase getDocument()
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));
public Node getFirstChild()
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(); } } }
public int getFlipOrientation() / public void setFlipOrientation(int value)
The default value is
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");
public Font getFont()
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");
public boolean hasChildNodes()
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");
public double getHeight() / public void setHeight(double value)
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");
public int getHorizontalAlignment() / public void setHorizontalAlignment(int value)
The default value is
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");
public java.lang.String getHRef() / public void setHRef(java.lang.String value)
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");
public boolean isComposite()
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(); } } }
public boolean isDeleteRevision()
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());
public boolean isGroup()
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; }
public boolean isHorizontalRule()
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());
public boolean isImage()
public boolean isInline()
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."); }
public boolean isInsertRevision()
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());
public boolean isLayoutInCell() / public void isLayoutInCell(boolean value)
The default value is true.
Has effect only for top level shapes, the property
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");
public boolean isMoveFromRevision()
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());
public boolean isMoveToRevision()
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());
public boolean isSignatureLine()
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");
public boolean isTopLevel()
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");
public boolean isWordArt()
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; }
public Node getLastChild()
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());
public double getLeft() / public void setLeft(double value)
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");
public byte getMarkupLanguage()
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()); }
public java.lang.String getName() / public void setName(java.lang.String value)
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");
public Node getNextSibling()
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(); } } }
public abstract int getNodeType()
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(); } } }
public CompositeNode getParentNode()
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));
public Paragraph getParentParagraph()
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");
public Node getPreviousSibling()
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());
public Range getRange()
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());
public int getRelativeHorizontalPosition() / public void setRelativeHorizontalPosition(int value)
The default value is
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");
public int getRelativeVerticalPosition() / public void setRelativeVerticalPosition(int value)
The default value is
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");
public double getRight()
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");
public double getRotation() / public void setRotation(double value)
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");
public java.lang.String getScreenTip() / public void setScreenTip(java.lang.String value)
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");
public int getShapeType()
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; }
public java.awt.Dimension getSizeInPoints()
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()); }
public java.lang.String getTarget() / public void setTarget(java.lang.String value)
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");
public java.lang.String getTitle() / public void setTitle(java.lang.String value)
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);
public double getTop() / public void setTop(double value)
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");
public int getVerticalAlignment() / public void setVerticalAlignment(int value)
The default value is
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");
public double getWidth() / public void setWidth(double value)
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");
public int getWrapSide() / public void setWrapSide(int value)
The default value is
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");
public int getWrapType() / public void setWrapType(int value)
The default value is
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");
public int getZOrder() / public void setZOrder(int value)
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");
public abstract boolean accept(DocumentVisitor visitor) throws java.lang.Exception
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.
visitor
- The visitor that will visit the nodes.public java.awt.geom.Rectangle2D.Float adjustWithEffects(java.awt.geom.Rectangle2D.Float source)
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);
public Node appendChild(Node newChild)
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
newChild
- The node to add.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");
public Node deepClone(boolean isCloneChildren)
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.
isCloneChildren
- True to recursively clone the subtree under the specified node;
false to clone only the node itself.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());
@Deprecated public java.lang.Object fetchInheritedShapeAttr(int key)
@Deprecated public java.lang.Object fetchShapeAttr(int key)
public CompositeNode getAncestor(int ancestorType)
ancestorType
- A 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; }
public CompositeNode getAncestor(java.lang.Class ancestorType)
The ancestor type matches if it is equal to ancestorType or derived from ancestorType.
ancestorType
- The object type of the ancestor to retrieve.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; }
public Node getChild(int nodeType, int index, boolean isDeep)
If index is out of range, a null is returned.
nodeType
- A 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.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()); }
public NodeCollection getChildNodes(int nodeType, boolean isDeep)
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.
nodeType
- A isDeep
- True to select from all child nodes recursively.
False to select only among immediate children. 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++; } }
@Deprecated public java.lang.Object getDirectShapeAttr(int key)
public ShapeRenderer getShapeRenderer() throws java.lang.Exception
This method just invokes the
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); }
public java.awt.geom.Point2D.Float getSizeInPoints()
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.
public java.lang.String getText()
The returned string includes all control and special characters as described in
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));
public int indexOf(Node child)
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()));
public Node insertAfter(Node newChild, Node refChild)
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
newChild
- The Node to insert.refChild
- The Node that is the reference node. The newNode is placed after the refNode. 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());
public Node insertBefore(Node newChild, Node refChild)
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
newChild
- The Node to insert.refChild
- The Node that is the reference node. The newChild is placed before 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());
public java.util.Iterator<Node> iterator()
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()); }
public java.awt.geom.Point2D.Float localToParent(java.awt.geom.Point2D.Float value)
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");
public Node nextPreOrder(Node rootNode)
rootNode
- The top node (limit) of traversal.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());
public Node prependChild(Node newChild)
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
newChild
- The node to add.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());
public Node previousPreOrder(Node rootNode)
rootNode
- The top node (limit) of traversal.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());
public void remove()
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());
public void removeAllChildren()
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");
public Node removeChild(Node oldChild)
The parent of oldChild is set to null after the node is removed.
oldChild
- The node to remove.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());
@Deprecated public void removeShapeAttr(int key)
public void removeSmartTags()
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());
public NodeList selectNodes(java.lang.String xpath)
Only expressions with element names are supported at the moment. Expressions that use attribute names are not supported.
xpath
- The XPath expression.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()}");
public Node selectSingleNode(java.lang.String xpath)
Only expressions with element names are supported at the moment. Expressions that use attribute names are not supported.
xpath
- The XPath expression.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());
@Deprecated public void setShapeAttr(int key, java.lang.Object value)
public java.lang.String toString(SaveOptions saveOptions) throws java.lang.Exception
saveOptions
- Specifies the options that control how the node is saved.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));
public java.lang.String toString(int saveFormat) throws java.lang.Exception
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));