public class Shape
Using the
An important property of a shape is its
Shapes that can have text, can contain
Example:
Shows how to delete all shapes from a document.// 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); shapes.clear(); // There could also be group shapes, they have different node type, remove them all too. NodeCollection groupShapes = doc.getChildNodes(NodeType.GROUP_SHAPE, true); groupShapes.clear();
Example:
Shows how to extract images from a document and save them as files.public void extractImagesToFiles() throws Exception { Document doc = new Document(getMyDir() + "Image.SampleImages.doc"); NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true); int imageIndex = 0; for (Shape shape : (Iterable<Shape>) shapes) { if (shape.hasImage()) { String imageFileName = MessageFormat.format("Image.ExportImages.{0}{1}", imageIndex, FileFormatUtil.imageTypeToExtension(shape.getImageData().getImageType())); shape.getImageData().save(getArtifactsDir() + imageFileName); imageIndex++; } } }
Example:
Shows how to insert a floating image in the middle of a page.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
Constructor Summary |
---|
Shape(DocumentBase doc, intshapeType)
Creates a new shape object. |
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.
|
||
Chart | getChart() | |
Provides access to the chart properties if this shape has a Chart.
|
||
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.
|
||
boolean | getExtrusionEnabled() | |
Returns true if an extrusion effect is enabled.
|
||
Fill | getFill() | |
Defines a fill for a shape.
|
||
java.awt.Color | getFillColor() | |
void | setFillColor(java.awt.Colorvalue) | |
Defines the brush color that fills the closed path of the shape. | ||
boolean | getFilled() | |
void | setFilled(booleanvalue) | |
Determines whether the closed path of the shape will be filled. | ||
Node | getFirstChild() | |
Gets the first child of the node.
|
||
Paragraph | getFirstParagraph() | |
Gets the first paragraph in the shape.
|
||
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 | hasChart() | |
Returns true if this Shape has a |
||
boolean | hasChildNodes() | |
Returns true if this node has any child nodes.
|
||
boolean | hasImage() | |
Returns true if the shape has image bytes or links an image.
|
||
boolean | hasSmartArt() | |
Returns true if this Shape has a SmartArt object.
|
||
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. | ||
ImageData | getImageData() | |
Provides access to the image of the shape.
Returns null if the shape cannot have an image.
|
||
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.
|
||
Paragraph | getLastParagraph() | |
Gets the last paragraph in the shape.
|
||
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.
|
||
int | getNodeType() | |
Returns |
||
OleFormat | getOleFormat() | |
Provides access to the OLE data of a shape. For a shape that is not an OLE object or ActiveX control, returns null.
|
||
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. | ||
boolean | getShadowEnabled() | |
Returns true if a shadow effect is enabled.
|
||
int | getShapeType() | |
Gets the shape type.
The value of the property is ShapeType integer constant. |
||
SignatureLine | getSignatureLine() | |
Gets |
||
java.awt.Dimension | getSizeInPoints() | |
Gets the size of the shape in points.
|
||
int | getStoryType() | |
Returns |
||
Stroke | getStroke() | |
Defines a stroke for a shape.
|
||
java.awt.Color | getStrokeColor() | |
void | setStrokeColor(java.awt.Colorvalue) | |
Defines the color of a stroke. | ||
boolean | getStroked() | |
void | setStroked(booleanvalue) | |
Defines whether the path will be stroked. | ||
double | getStrokeWeight() | |
void | setStrokeWeight(doublevalue) | |
Defines the brush thickness that strokes the path of a shape in points. | ||
java.lang.String | getTarget() | |
void | setTarget(java.lang.Stringvalue) | |
Gets or sets the target frame for the shape hyperlink. | ||
TextBox | getTextBox() | |
Defines attributes that specify how text is displayed in a shape.
|
||
TextPath | getTextPath() | |
Defines the text of the text path (of a WordArt object).
|
||
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 | ||
---|---|---|
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) | |
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 Shape(DocumentBase doc, int shapeType)
You should specify desired shape properties after you created a shape.
doc
- The owner document.shapeType
- A Example:
Creates a textbox with some text and different formatting options in a new document.// Create a blank 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); textBox.setWidth(200); // 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("Content in textbox"); para.appendChild(run); // Append the textbox to the first paragraph in the body. doc.getFirstSection().getBody().getFirstParagraph().appendChild(textBox); // Save the output doc.save(getArtifactsDir() + "Shape.CreateTextBox.doc");
Example:
Shows how to create shape and add an image to a document without using a document builder.Document doc = new Document(); // Public constructor of "Shape" class creates shape with "ShapeMarkupLanguage.Vml" markup type // If you need to create "NonPrimitive" shapes, like SingleCornerSnipped, TopCornersSnipped, DiagonalCornersSnipped, // TopCornersOneRoundedOneSnipped, SingleCornerRounded, TopCornersRounded, DiagonalCornersRounded // please use DocumentBuilder.InsertShape methods Shape shape = new Shape(doc, ShapeType.IMAGE); shape.getImageData().setImage(getImageDir() + "Hammer.wmf"); shape.setWidth(100); shape.setHeight(100); doc.getFirstSection().getBody().getFirstParagraph().appendChild(shape); doc.save(getArtifactsDir() + "Image.CreateImageDirectly.doc");
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 get properties for floating tablesDocument doc = new Document(getMyDir() + "Table.Distance.docx"); Table table = (Table) doc.getChild(NodeType.TABLE, 0, true); if (table.getTextWrapping() == TextWrapping.AROUND) { Assert.assertEquals(table.getRelativeHorizontalAlignment(), HorizontalAlignment.DEFAULT); Assert.assertEquals(table.getRelativeVerticalAlignment(), VerticalAlignment.DEFAULT); Assert.assertEquals(table.getHorizontalAnchor(), RelativeHorizontalPosition.MARGIN); Assert.assertEquals(table.getVerticalAnchor(), RelativeVerticalPosition.PARAGRAPH); Assert.assertEquals(table.getAbsoluteHorizontalDistance(), 0.0); Assert.assertEquals(table.getAbsoluteVerticalDistance(), 4.8); Assert.assertEquals(table.getAllowOverlap(), true); }
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() + "Aspose.Words.gif"); Assert.assertTrue(shape.canHaveImage()); Assert.assertTrue(shape.hasImage()); // Rotate the image shape.setRotation(45.0); doc.save(getArtifactsDir() + "Shape.InsertShapes.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); // Every GroupShape is top level GroupShape group = new GroupShape(doc); Assert.assertTrue(group.isGroup()); Assert.assertTrue(group.isTopLevel()); // And it is a floating shape too, so we can set its coordinates independently of the text Assert.assertEquals(group.getWrapType(), WrapType.NONE); // Make it a floating shape group.setWrapType(WrapType.NONE); // 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 objectDocument doc = new Document(getMyDir() + "Shape.ActiveXObject.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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); // 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); // Make the shape occupy a band 50 points high at the very top of the page. shape.setLeft(0); shape.setTop(0); shape.setWidth(builder.getCurrentSection().getPageSetup().getPageWidth()); shape.setHeight(50); // The width will be scaled to the height and the dimensions of the real image final double delta = 0.05; Assert.assertEquals(shape.getWidth(), 50.85d, delta); // 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()); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPositionSize.doc");
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(0, 0, pageWidth, pageHeight)); lineA.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE); lineA.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA); Assert.assertEquals(lineA.getBoundsInPoints(), new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight)); // 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(0, 0, 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(lineB); doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA); doc.save(getArtifactsDir() + "Shape.LineFlipOrientation.doc");
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(0, 0, pageWidth, pageHeight)); lineA.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE); lineA.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA); Assert.assertEquals(lineA.getBoundsInPoints(), new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight)); // 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(0, 0, 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(lineB); doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA); doc.save(getArtifactsDir() + "Shape.LineFlipOrientation.doc");
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.AdjustWithEffects.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() + "Aspose.Words.gif"); Assert.assertTrue(shape.canHaveImage()); Assert.assertTrue(shape.hasImage()); // Rotate the image shape.setRotation(45.0); doc.save(getArtifactsDir() + "Shape.InsertShapes.docx");
public Chart getChart()
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
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.NodeCollection children = paragraph.getChildNodes(); for (Node child : (Iterable<Node>) children) { // Paragraph may contain children of various types such as runs, shapes and so on. if (child.getNodeType() == NodeType.RUN) { // Say we found the node that we want, do something useful. 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); // Every GroupShape is top level GroupShape group = new GroupShape(doc); Assert.assertTrue(group.isGroup()); Assert.assertTrue(group.isTopLevel()); // And it is a floating shape too, so we can set its coordinates independently of the text Assert.assertEquals(group.getWrapType(), WrapType.NONE); // Make it a floating shape group.setWrapType(WrapType.NONE); // 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); // Every GroupShape is top level GroupShape group = new GroupShape(doc); Assert.assertTrue(group.isGroup()); Assert.assertTrue(group.isTopLevel()); // And it is a floating shape too, so we can set its coordinates independently of the text Assert.assertEquals(group.getWrapType(), WrapType.NONE); // Make it a floating shape group.setWrapType(WrapType.NONE); // 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 within a CompositeNode.Document doc = new Document(); // An empty document has one paragraph by default Assert.assertEquals(doc.getFirstSection().getBody().getParagraphs().getCount(), 1); // 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(paragraph.getText(), "Initial text. " + (char) 12); // 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(paragraph.getText(), "Run 1. Run 2. Initial text. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 4); // 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(paragraph.getText(), "Run 1. Updated run 2. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 3);
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 the shape will push out of the way for (int i = 0; i < 500; i++) { builder.write("text "); } doc.save(getArtifactsDir() + "Shape.ShapeCoords.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 the shape will push out of the way for (int i = 0; i < 500; i++) { builder.write("text "); } doc.save(getArtifactsDir() + "Shape.ShapeCoords.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 the shape will push out of the way for (int i = 0; i < 500; i++) { builder.write("text "); } doc.save(getArtifactsDir() + "Shape.ShapeCoords.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 the shape will push out of the way for (int i = 0; i < 500; i++) { builder.write("text "); } doc.save(getArtifactsDir() + "Shape.ShapeCoords.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 that when you create any node, it requires a document that will own the node.// 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 boolean getExtrusionEnabled()
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public Fill getFill()
Example:
Demonstrates how to create shapes with fill.DocumentBuilder builder = new DocumentBuilder(); builder.writeln(); builder.writeln(); builder.writeln(); builder.write("Some text under the shape."); // Create a red balloon, semitransparent. // The shape is floating and its coordinates are (0,0) by default, relative to the current paragraph. Shape shape = new Shape(builder.getDocument(), ShapeType.BALLOON); shape.setFillColor(Color.RED); shape.getFill().setOpacity(0.3); shape.setWidth(100); shape.setHeight(100); shape.setTop(-100); builder.insertNode(shape); builder.getDocument().save(getArtifactsDir() + "Shape.Fill.doc");
public java.awt.Color getFillColor() / public void setFillColor(java.awt.Color value)
This is a shortcut to the
The default value is
Example:
Demonstrates how to create shapes with fill.DocumentBuilder builder = new DocumentBuilder(); builder.writeln(); builder.writeln(); builder.writeln(); builder.write("Some text under the shape."); // Create a red balloon, semitransparent. // The shape is floating and its coordinates are (0,0) by default, relative to the current paragraph. Shape shape = new Shape(builder.getDocument(), ShapeType.BALLOON); shape.setFillColor(Color.RED); shape.getFill().setOpacity(0.3); shape.setWidth(100); shape.setHeight(100); shape.setTop(-100); builder.insertNode(shape); builder.getDocument().save(getArtifactsDir() + "Shape.Fill.doc");
public boolean getFilled() / public void setFilled(boolean value)
This is a shortcut to the
The default value is true.
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public Node getFirstChild()
Example:
Shows how to enumerate immediate child nodes of a composite node using NextSibling. In this example we enumerate all paragraphs of a section body.// Get the section that we want to work on. Section section = doc.getSections().get(0); Body body = section.getBody(); // Loop starting from the first child until we reach null. for (Node node = body.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 { // Open a document. Document doc = new Document(getMyDir() + "Node.RecurseAllNodes.doc"); // Invoke the recursive function that will walk the tree. traverseAllNodes(doc); } /** * A simple function that will walk through all children of a specified node recursively * and print the type of each node to the screen. */ @Test(enabled = false) public void traverseAllNodes(final CompositeNode parentNode) { // This is the most efficient way to loop through immediate children of a node. for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) { // Do some useful work. System.out.println(Node.nodeTypeToString(childNode.getNodeType())); // Recurse into the node if it is a composite node. if (childNode.isComposite()) { traverseAllNodes((CompositeNode) childNode); } } }
public Paragraph getFirstParagraph()
Example:
Creates a textbox with some text and different formatting options in a new document.// Create a blank 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); textBox.setWidth(200); // 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("Content in textbox"); para.appendChild(run); // Append the textbox to the first paragraph in the body. doc.getFirstSection().getBody().getFirstParagraph().appendChild(textBox); // Save the output doc.save(getArtifactsDir() + "Shape.CreateTextBox.doc");
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(0, 0, pageWidth, pageHeight)); lineA.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE); lineA.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA); Assert.assertEquals(lineA.getBoundsInPoints(), new Rectangle2D.Float(0f, 0f, pageWidth, pageHeight)); // 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(0, 0, 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(lineB); doc.getFirstSection().getBody().getFirstParagraph().appendChild(lineA); doc.save(getArtifactsDir() + "Shape.LineFlipOrientation.doc");
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() + "Aspose.Words.gif"); Assert.assertTrue(shape.canHaveImage()); Assert.assertTrue(shape.hasImage()); // Rotate the image shape.setRotation(45.0); doc.save(getArtifactsDir() + "Shape.InsertShapes.docx");
public boolean hasChart()
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public boolean hasChildNodes()
Example:
Demonstrates how to use the InsertDocument method to insert a document into a merge field during mail merge.public void insertDocumentAtMailMerge() throws Exception { // Open the main document. Document mainDoc = new Document(getMyDir() + "InsertDocument1.doc"); // Add a handler to ApiExamples.Tests.MergeField event mainDoc.getMailMerge().setFieldMergingCallback(new InsertDocumentAtMailMergeHandler()); // The main document has a merge field in it called "Document_1". // The corresponding data for this field contains fully qualified path to the document // that should be inserted to this field. mainDoc.getMailMerge().execute(new String[]{"Document_1"}, new String[]{getMyDir() + "InsertDocument2.doc"}); mainDoc.save(getArtifactsDir() + "InsertDocumentAtMailMerge.doc"); } private class InsertDocumentAtMailMergeHandler implements IFieldMergingCallback { /** * This handler makes special processing for the "Document_1" field. * The field value contains the path to load the document. * We load the document and insert it into the current merge field. */ public void fieldMerging(final FieldMergingArgs args) throws Exception { if ("Document_1".equals(args.getDocumentFieldName())) { // Use document builder to navigate to the merge field with the specified name. DocumentBuilder builder = new DocumentBuilder(args.getDocument()); builder.moveToMergeField(args.getDocumentFieldName()); // The name of the document to load and insert is stored in the field value. Document subDoc = new Document((String) args.getFieldValue()); // Insert the document. insertDocument(builder.getCurrentParagraph(), subDoc); // The paragraph that contained the merge field might be empty now and you probably want to delete it. if (!builder.getCurrentParagraph().hasChildNodes()) { builder.getCurrentParagraph().remove(); } // Indicate to the mail merge engine that we have inserted what we wanted. args.setText(null); } } public void imageFieldMerging(final ImageFieldMergingArgs args) { // Do nothing. } }
public boolean hasImage()
Example:
Shows how to extract images from a document and save them as files.public void extractImagesToFiles() throws Exception { Document doc = new Document(getMyDir() + "Image.SampleImages.doc"); NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true); int imageIndex = 0; for (Shape shape : (Iterable<Shape>) shapes) { if (shape.hasImage()) { String imageFileName = MessageFormat.format("Image.ExportImages.{0}{1}", imageIndex, FileFormatUtil.imageTypeToExtension(shape.getImageData().getImageType())); shape.getImageData().save(getArtifactsDir() + imageFileName); imageIndex++; } } }
Example:
Shows how to delete all images from a document.// 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(); }
public boolean hasSmartArt()
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 an image shape.DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inserted at 100% scale. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // It is easy to change the shape size. In this case, make it 50% relative to the current shape size. shape.setWidth(shape.getWidth() * 0.5); shape.setHeight(shape.getHeight() * 0.5); // However, we can also go back to the original image size and scale from there, say 110%. ImageSize imageSize = shape.getImageData().getImageSize(); shape.setWidth(imageSize.getWidthPoints() * 1.1); shape.setHeight(imageSize.getHeightPoints() * 1.1); builder.getDocument().save(getArtifactsDir() + "Image.ScaleImage.doc");
Example:
Shows how to insert a floating image and specify its position and size.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); // 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); // Make the shape occupy a band 50 points high at the very top of the page. shape.setLeft(0); shape.setTop(0); shape.setWidth(builder.getCurrentSection().getPageSetup().getPageWidth()); shape.setHeight(50); // The width will be scaled to the height and the dimensions of the real image final double delta = 0.05; Assert.assertEquals(shape.getWidth(), 50.85d, delta); // 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()); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPositionSize.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); shape.setHRef("http://www.aspose.com/Community/Forums/75/ShowForum.aspx"); shape.setTarget("New Window"); shape.setScreenTip("Aspose.Words Support Forums"); builder.getDocument().save(getArtifactsDir() + "Image.InsertImageWithHyperlink.doc");
public ImageData getImageData()
Example:
Shows how to extract images from a document and save them as files.public void extractImagesToFiles() throws Exception { Document doc = new Document(getMyDir() + "Image.SampleImages.doc"); NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true); int imageIndex = 0; for (Shape shape : (Iterable<Shape>) shapes) { if (shape.hasImage()) { String imageFileName = MessageFormat.format("Image.ExportImages.{0}{1}", imageIndex, FileFormatUtil.imageTypeToExtension(shape.getImageData().getImageType())); shape.getImageData().save(getArtifactsDir() + imageFileName); imageIndex++; } } }
Example:
Shows how to insert a linked image into a document.DocumentBuilder builder = new DocumentBuilder(); String imageFileName = getImageDir() + "Hammer.wmf"; builder.write("Image linked, not stored in the document: "); Shape linkedOnly = new Shape(builder.getDocument(), ShapeType.IMAGE); linkedOnly.setWrapType(WrapType.INLINE); linkedOnly.getImageData().setSourceFullName(imageFileName); builder.insertNode(linkedOnly); builder.writeln(); builder.write("Image linked and stored in the document: "); Shape linkedAndStored = new Shape(builder.getDocument(), ShapeType.IMAGE); linkedAndStored.setWrapType(WrapType.INLINE); linkedAndStored.getImageData().setSourceFullName(imageFileName); linkedAndStored.getImageData().setImage(imageFileName); builder.insertNode(linkedAndStored); builder.writeln(); builder.write("Image stored in the document, but not linked: "); Shape stored = new Shape(builder.getDocument(), ShapeType.IMAGE); stored.setWrapType(WrapType.INLINE); stored.getImageData().setImage(imageFileName); builder.insertNode(stored); builder.writeln(); builder.getDocument().save(getArtifactsDir() + "Image.CreateLinkedImage.doc");
public boolean isComposite()
Example:
Shows how to efficiently visit all direct and indirect children of a composite node.public void recurseAllNodes() throws Exception { // Open a document. Document doc = new Document(getMyDir() + "Node.RecurseAllNodes.doc"); // Invoke the recursive function that will walk the tree. traverseAllNodes(doc); } /** * A simple function that will walk through all children of a specified node recursively * and print the type of each node to the screen. */ @Test(enabled = false) public void traverseAllNodes(final CompositeNode parentNode) { // This is the most efficient way to loop through immediate children of a node. for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) { // Do some useful work. System.out.println(Node.nodeTypeToString(childNode.getNodeType())); // Recurse into the node if it is a composite node. if (childNode.isComposite()) { traverseAllNodes((CompositeNode) childNode); } } }
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 let it accept a visitorpublic void groupOfShapes() throws Exception { Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // If you need to create "NonPrimitive" shapes, like 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> /// Visitor that prints shape group contents information 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 horizontal rule shape in a document.// Use a document builder to insert a horizontal rule DocumentBuilder builder = new DocumentBuilder(); builder.insertHorizontalRule(); // Get the rule from the document's shape collection and verify it Shape horizontalRule = (Shape) builder.getDocument().getChild(NodeType.SHAPE, 0, true); Assert.assertTrue(horizontalRule.isHorizontalRule());
public boolean isImage()
Example:
Opens an HTML document with images from a stream using a base URI.// We are opening this HTML file: // <html> // <body> // <p>Simple file.</p> // <p><img src="Aspose.Words.gif" width="80" height="60"></p> // </body> // </html> String fileName = getMyDir() + "Document.OpenFromStreamWithBaseUri.html"; // Open the stream. InputStream stream = new FileInputStream(fileName); // Open the document. Note the Document constructor detects HTML format automatically. // Pass the URI of the base folder so any images with relative URIs in the HTML document can be found. LoadOptions loadOptions = new LoadOptions(); loadOptions.setBaseUri(getImageDir()); Document doc = new Document(stream, loadOptions); // You can close the stream now, it is no longer needed because the document is in memory. stream.close(); // Save in the DOC format. doc.save(getArtifactsDir() + "Document.OpenFromStreamWithBaseUri.doc");
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() + "Shape.DeleteAllShapes.doc"); 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(getMyDir() + "Shape.LayoutInCell.docx"); DocumentBuilder builder = new DocumentBuilder(doc); 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); watermark.isLayoutInCell(true); // False - display the shape outside of table cell, True - display the shape outside of table cell 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}", UUID.randomUUID())); // 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.LayoutInCell.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() + "Shape.Revisions.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() + "Shape.Revisions.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() + "Drawing.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); // Every GroupShape is top level GroupShape group = new GroupShape(doc); Assert.assertTrue(group.isGroup()); Assert.assertTrue(group.isTopLevel()); // And it is a floating shape too, so we can set its coordinates independently of the text Assert.assertEquals(group.getWrapType(), WrapType.NONE); // Make it a floating shape group.setWrapType(WrapType.NONE); // 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() + "Drawing.TextPath.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:
Demonstrates use of methods of Node and CompositeNode to remove a section before the last section in the document.// Document is a CompositeNode and LastChild returns the last child node in the Document node. // Since the Document can contain only Section nodes, the last child is the last section. Node lastSection = doc.getLastChild(); // Each node knows its next and previous sibling nodes. // Previous sibling of a section is a section before the specified section. // If the node is the first child, PreviousSibling will return null. Node sectionBeforeLast = lastSection.getPreviousSibling(); if (sectionBeforeLast != null) { doc.removeChild(sectionBeforeLast); }
public Paragraph getLastParagraph()
Example:
Shows how to insert text boxes and arrange their text.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Insert a shape that contains a TextBox Shape textBoxShape = builder.insertShape(ShapeType.TEXT_BOX, 150.0, 100.0); TextBox textBox = textBoxShape.getTextBox(); // Move the document builder to inside the TextBox and write text builder.moveTo(textBoxShape.getLastParagraph()); builder.write("Vertical text"); // Text is displayed vertically, written top to bottom textBox.setLayoutFlow(LayoutFlow.TOP_TO_BOTTOM_IDEOGRAPHIC); // Move the builder out of the shape and back into the main document body builder.moveTo(textBoxShape.getParentParagraph()); // Insert another TextBox textBoxShape = builder.insertShape(ShapeType.TEXT_BOX, 150.0, 100.0); textBox = textBoxShape.getTextBox(); // Apply these values to both these members to get the parent shape to defy the dimensions we set to fit tightly around the TextBox's text textBox.setFitShapeToText(true); textBox.setTextBoxWrapMode(TextBoxWrapMode.NONE); builder.moveTo(textBoxShape.getLastParagraph()); builder.write("Text fit tightly inside textbox"); builder.moveTo(textBoxShape.getParentParagraph()); textBoxShape = builder.insertShape(ShapeType.TEXT_BOX, 100.0, 100.0); textBox = textBoxShape.getTextBox(); // Set margins for the textbox textBox.setInternalMarginTop(15.0); textBox.setInternalMarginBottom(15.0); textBox.setInternalMarginLeft(15.0); textBox.setInternalMarginRight(15.0); builder.moveTo(textBoxShape.getLastParagraph()); builder.write("Text placed according to textbox margins"); doc.save(getArtifactsDir() + "Drawing.TextBox.docx");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); // 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); // Make the shape occupy a band 50 points high at the very top of the page. shape.setLeft(0); shape.setTop(0); shape.setWidth(builder.getCurrentSection().getPageSetup().getPageWidth()); shape.setHeight(50); // The width will be scaled to the height and the dimensions of the real image final double delta = 0.05; Assert.assertEquals(shape.getWidth(), 50.85d, delta); // 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()); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPositionSize.doc");
public byte getMarkupLanguage()
Example:
Shows how get markup language for shape object in documentDocument doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); Shape image = builder.insertImage(getImageDir() + "dotnet-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() + "Aspose.Words.gif"); Assert.assertTrue(shape.canHaveImage()); Assert.assertTrue(shape.hasImage()); // Rotate the image shape.setRotation(45.0); doc.save(getArtifactsDir() + "Shape.InsertShapes.docx");
public Node getNextSibling()
Example:
Shows how to enumerate immediate child nodes of a composite node using NextSibling. In this example we enumerate all paragraphs of a section body.// Get the section that we want to work on. Section section = doc.getSections().get(0); Body body = section.getBody(); // Loop starting from the first child until we reach null. for (Node node = body.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 { // Open a document. Document doc = new Document(getMyDir() + "Node.RecurseAllNodes.doc"); // Invoke the recursive function that will walk the tree. traverseAllNodes(doc); } /** * A simple function that will walk through all children of a specified node recursively * and print the type of each node to the screen. */ @Test(enabled = false) public void traverseAllNodes(final CompositeNode parentNode) { // This is the most efficient way to loop through immediate children of a node. for (Node childNode = parentNode.getFirstChild(); childNode != null; childNode = childNode.getNextSibling()) { // Do some useful work. System.out.println(Node.nodeTypeToString(childNode.getNodeType())); // Recurse into the node if it is a composite node. if (childNode.isComposite()) { traverseAllNodes((CompositeNode) childNode); } } }
public int getNodeType()
Example:
Shows how to retrieve the NodeType enumeration of nodes.Document doc = new Document(getMyDir() + "Document.doc"); // Let's pick a node that we can't be quite sure of what type it is. // In this case lets pick the first node of the first paragraph in the body of the document Node node = doc.getFirstSection().getBody().getFirstParagraph().getFirstChild(); System.out.println("NodeType of first child: " + Node.nodeTypeToString(node.getNodeType())); // This time let's pick a node that we know the type of. Create a new paragraph and a table node. Paragraph para = new Paragraph(doc); Table table = new Table(doc); // Access to NodeType for typed nodes will always return their specific NodeType. // i.e A paragraph node will always return NodeType.Paragraph, a table node will always return NodeType.Table. System.out.println("NodeType of Paragraph: " + Node.nodeTypeToString(para.getNodeType())); System.out.println("NodeType of Table: " + Node.nodeTypeToString(table.getNodeType()));
public OleFormat getOleFormat()
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
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.// Create a new empty document. It has one section. Document doc = new Document(); // The section is the first child node of the document. Node section = doc.getFirstChild(); // The section's parent node is the document. System.out.println("Section parent is the document: " + (doc == section.getParentNode()));
Example:
Shows that when you create any node, it requires a document that will own the node.// 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() + "Aspose.Words.gif"); Assert.assertTrue(shape.canHaveImage()); Assert.assertTrue(shape.hasImage()); // Rotate the image shape.setRotation(45.0); doc.save(getArtifactsDir() + "Shape.InsertShapes.docx");
public Node getPreviousSibling()
Example:
Demonstrates use of methods of Node and CompositeNode to remove a section before the last section in the document.// Document is a CompositeNode and LastChild returns the last child node in the Document node. // Since the Document can contain only Section nodes, the last child is the last section. Node lastSection = doc.getLastChild(); // Each node knows its next and previous sibling nodes. // Previous sibling of a section is a section before the specified section. // If the node is the first child, PreviousSibling will return null. Node sectionBeforeLast = lastSection.getPreviousSibling(); if (sectionBeforeLast != null) { doc.removeChild(sectionBeforeLast); }
public Range getRange()
Example:
Shows how to delete all characters of a range.// Open Word document. Document doc = new Document(getMyDir() + "Range.DeleteSection.doc"); // The document contains two sections. Each section has a paragraph of text. System.out.println(doc.getText()); // 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. System.out.println(doc.getText());
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); // 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); // Make the shape occupy a band 50 points high at the very top of the page. shape.setLeft(0); shape.setTop(0); shape.setWidth(builder.getCurrentSection().getPageSetup().getPageWidth()); shape.setHeight(50); // The width will be scaled to the height and the dimensions of the real image final double delta = 0.05; Assert.assertEquals(shape.getWidth(), 50.85d, delta); // 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()); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPositionSize.doc");
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() + "Aspose.Words.gif"); Assert.assertTrue(shape.canHaveImage()); Assert.assertTrue(shape.hasImage()); // Rotate the image shape.setRotation(45.0); doc.save(getArtifactsDir() + "Shape.InsertShapes.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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); shape.setHRef("http://www.aspose.com/Community/Forums/75/ShowForum.aspx"); shape.setTarget("New Window"); shape.setScreenTip("Aspose.Words Support Forums"); builder.getDocument().save(getArtifactsDir() + "Image.InsertImageWithHyperlink.doc");
public boolean getShadowEnabled()
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public int getShapeType()
Example:
Shows how to create a group of shapes, and let it accept a visitorpublic void groupOfShapes() throws Exception { Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // If you need to create "NonPrimitive" shapes, like 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> /// Visitor that prints shape group contents information 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 SignatureLine getSignatureLine()
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() + "Drawing.SignatureLine.docx");
public java.awt.Dimension getSizeInPoints()
Example:
Shows how get markup language for shape object in documentDocument doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); Shape image = builder.insertImage(getImageDir() + "dotnet-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 int getStoryType()
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public Stroke getStroke()
Example:
Shows to create a variety of shapes.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Draw a dotted horizontal half-transparent red line with an arrow on the left end and a diamond on the other Shape arrow = new Shape(doc, ShapeType.LINE); arrow.setWidth(200.0); arrow.getStroke().setColor(Color.RED); arrow.getStroke().setStartArrowType(ArrowType.ARROW); arrow.getStroke().setStartArrowLength(ArrowLength.LONG); arrow.getStroke().setStartArrowWidth(ArrowWidth.WIDE); arrow.getStroke().setEndArrowType(ArrowType.DIAMOND); arrow.getStroke().setEndArrowLength(ArrowLength.LONG); arrow.getStroke().setEndArrowWidth(ArrowWidth.WIDE); arrow.getStroke().setDashStyle(DashStyle.DASH); arrow.getStroke().setOpacity(0.5); Assert.assertEquals(arrow.getStroke().getJoinStyle(), JoinStyle.MITER); builder.insertNode(arrow); // Draw a thick black diagonal line with rounded ends Shape line = new Shape(doc, ShapeType.LINE); line.setTop(40.0); line.setWidth(200.0); line.setHeight(20.0); line.setStrokeWeight(5.0); line.getStroke().setEndCap(EndCap.ROUND); builder.insertNode(line); // Draw an arrow with a green fill Shape filledInArrow = new Shape(doc, ShapeType.ARROW); filledInArrow.setWidth(200.0); filledInArrow.setHeight(40.0); filledInArrow.setTop(100.0); filledInArrow.getFill().setColor(Color.GREEN); filledInArrow.getFill().setOn(true); builder.insertNode(filledInArrow); // Draw an arrow filled in with the Aspose logo and flip its orientation Shape filledInArrowImg = new Shape(doc, ShapeType.ARROW); filledInArrowImg.setWidth(200.0); filledInArrowImg.setHeight(40.0); filledInArrowImg.setTop(160.0); filledInArrowImg.setFlipOrientation(FlipOrientation.BOTH); BufferedImage image = ImageIO.read(getAsposelogoUri().toURL().openStream()); Graphics2D graphics2D = image.createGraphics(); // When we flipped the orientation of our arrow, the image content was flipped too // If we want it to be displayed the right side up, we have to reverse the arrow flip on the image AffineTransform at = new AffineTransform(); at.concatenate(AffineTransform.getScaleInstance(1, -1)); at.concatenate(AffineTransform.getTranslateInstance(0, -image.getHeight())); graphics2D.transform(at); graphics2D.drawImage(image, 0, 0, null); graphics2D.dispose(); filledInArrowImg.getImageData().setImage(image); builder.insertNode(filledInArrowImg); filledInArrowImg.getStroke().setJoinStyle(JoinStyle.ROUND); doc.save(getArtifactsDir() + "Drawing.VariousShapes.docx");
public java.awt.Color getStrokeColor() / public void setStrokeColor(java.awt.Color value)
This is a shortcut to the
The default value is
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public boolean getStroked() / public void setStroked(boolean value)
This is a shortcut to the
The default value is true.
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
public double getStrokeWeight() / public void setStrokeWeight(double value)
This is a shortcut to the
The default value is 0.75.
Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); shape.setHRef("http://www.aspose.com/Community/Forums/75/ShowForum.aspx"); shape.setTarget("New Window"); shape.setScreenTip("Aspose.Words Support Forums"); builder.getDocument().save(getArtifactsDir() + "Image.InsertImageWithHyperlink.doc");
public TextBox getTextBox()
Example:
Shows how to insert text boxes and arrange their text.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Insert a shape that contains a TextBox Shape textBoxShape = builder.insertShape(ShapeType.TEXT_BOX, 150.0, 100.0); TextBox textBox = textBoxShape.getTextBox(); // Move the document builder to inside the TextBox and write text builder.moveTo(textBoxShape.getLastParagraph()); builder.write("Vertical text"); // Text is displayed vertically, written top to bottom textBox.setLayoutFlow(LayoutFlow.TOP_TO_BOTTOM_IDEOGRAPHIC); // Move the builder out of the shape and back into the main document body builder.moveTo(textBoxShape.getParentParagraph()); // Insert another TextBox textBoxShape = builder.insertShape(ShapeType.TEXT_BOX, 150.0, 100.0); textBox = textBoxShape.getTextBox(); // Apply these values to both these members to get the parent shape to defy the dimensions we set to fit tightly around the TextBox's text textBox.setFitShapeToText(true); textBox.setTextBoxWrapMode(TextBoxWrapMode.NONE); builder.moveTo(textBoxShape.getLastParagraph()); builder.write("Text fit tightly inside textbox"); builder.moveTo(textBoxShape.getParentParagraph()); textBoxShape = builder.insertShape(ShapeType.TEXT_BOX, 100.0, 100.0); textBox = textBoxShape.getTextBox(); // Set margins for the textbox textBox.setInternalMarginTop(15.0); textBox.setInternalMarginBottom(15.0); textBox.setInternalMarginLeft(15.0); textBox.setInternalMarginRight(15.0); builder.moveTo(textBoxShape.getLastParagraph()); builder.write("Text placed according to textbox margins"); doc.save(getArtifactsDir() + "Drawing.TextBox.docx");
public TextPath getTextPath()
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() + "Drawing.TextPath.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 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(431.5); shape.setHeight(346.35); shape.setTitle("Alt Text Title"); builder.insertNode(shape); ByteArrayOutputStream dstStream = new ByteArrayOutputStream(); doc.save(dstStream, SaveFormat.DOCX); shape = (Shape) doc.getChild(NodeType.SHAPE, 0, true); System.out.println("Shape text: " + shape.getTitle());
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); // 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); // Make the shape occupy a band 50 points high at the very top of the page. shape.setLeft(0); shape.setTop(0); shape.setWidth(builder.getCurrentSection().getPageSetup().getPageWidth()); shape.setHeight(50); // The width will be scaled to the height and the dimensions of the real image final double delta = 0.05; Assert.assertEquals(shape.getWidth(), 50.85d, delta); // 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()); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPositionSize.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
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 an image shape.DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inserted at 100% scale. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // It is easy to change the shape size. In this case, make it 50% relative to the current shape size. shape.setWidth(shape.getWidth() * 0.5); shape.setHeight(shape.getHeight() * 0.5); // However, we can also go back to the original image size and scale from there, say 110%. ImageSize imageSize = shape.getImageData().getImageSize(); shape.setWidth(imageSize.getWidthPoints() * 1.1); shape.setHeight(imageSize.getHeightPoints() * 1.1); builder.getDocument().save(getArtifactsDir() + "Image.ScaleImage.doc");
Example:
Shows how to insert a floating image and specify its position and size.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Hammer.wmf"); // 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); // Make the shape occupy a band 50 points high at the very top of the page. shape.setLeft(0); shape.setTop(0); shape.setWidth(builder.getCurrentSection().getPageSetup().getPageWidth()); shape.setHeight(50); // The width will be scaled to the height and the dimensions of the real image final double delta = 0.05; Assert.assertEquals(shape.getWidth(), 50.85d, delta); // 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()); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPositionSize.doc");
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() + "Shape.ReplaceTextboxesWithImages.doc"); // 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() + "Hammer.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.doc");
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.// This creates a builder and also an empty document inside the builder. DocumentBuilder builder = new DocumentBuilder(); // By default, the image is inline. Shape shape = builder.insertImage(getImageDir() + "Aspose.Words.gif"); // 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.setHorizontalAlignment(HorizontalAlignment.CENTER); shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE); shape.setVerticalAlignment(VerticalAlignment.CENTER); builder.getDocument().save(getArtifactsDir() + "Image.CreateFloatingPageCenter.doc");
Example:
Creates a textbox with some text and different formatting options in a new document.// Create a blank 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); textBox.setWidth(200); // 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("Content in textbox"); para.appendChild(run); // Append the textbox to the first paragraph in the body. doc.getFirstSection().getBody().getFirstParagraph().appendChild(textBox); // Save the output doc.save(getArtifactsDir() + "Shape.CreateTextBox.doc");
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:
Creates a textbox with some text and different formatting options in a new document.// Create a blank 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); textBox.setWidth(200); // 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("Content in textbox"); para.appendChild(run); // Append the textbox to the first paragraph in the body. doc.getFirstSection().getBody().getFirstParagraph().appendChild(textBox); // Save the output doc.save(getArtifactsDir() + "Shape.CreateTextBox.doc");
public 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.Example:
Shows how to iterate over all the shapes in a document.public void visitShapes() throws Exception { // Open a document that contains shapes Document doc = new Document(getMyDir() + "Shape.Revisions.docx"); // Create a ShapeVisitor and get the document to accept it ShapeVisitor shapeVisitor = new ShapeVisitor(); doc.accept(shapeVisitor); // Print all the information that the visitor has collected System.out.println(shapeVisitor.getText()); } /// <summary> /// DocumentVisitor implementation that collects information about visited shapes into a StringBuilder, to be printed to the console /// </summary> private static class ShapeVisitor extends DocumentVisitor { public ShapeVisitor() { mShapesVisited = 0; mTextIndentLevel = 0; mStringBuilder = new StringBuilder(); } /// <summary> /// Appends a line to the StringBuilder with one prepended tab character for each indent level /// </summary> private void appendLine(String text) { for (int i = 0; i < mTextIndentLevel; i++) { mStringBuilder.append('\t'); } mStringBuilder.append(text + "\n"); } /// <summary> /// Return all the text that the StringBuilder has accumulated /// </summary> public String getText() { return MessageFormat.format("Shapes visited: {0}\n{1}", mShapesVisited, mStringBuilder); } /// <summary> /// Called when the start of a Shape node is visited /// </summary> public int visitShapeStart(Shape shape) { appendLine(MessageFormat.format("Shape found: {0}", shape.getShapeType())); mTextIndentLevel++; if (shape.hasChart()) appendLine(MessageFormat.format("Has chart: {0}", shape.getChart().getTitle().getText())); appendLine(MessageFormat.format("Extrusion enabled: {0}", shape.getExtrusionEnabled())); appendLine(MessageFormat.format("Shadow enabled: {0}", shape.getShadowEnabled())); appendLine(MessageFormat.format("StoryType: {0}", shape.getStoryType())); if (shape.getStroked()) { Assert.assertEquals(shape.getStrokeColor(), shape.getStroke().getColor()); appendLine(MessageFormat.format("Stroke colors: {0}, {1}", shape.getStroke().getColor(), shape.getStroke().getColor2())); appendLine(MessageFormat.format("Stroke weight: {0}", shape.getStrokeWeight())); } if (shape.getFilled()) appendLine(MessageFormat.format("Filled: {0}", shape.getFillColor())); if (shape.getOleFormat() != null) appendLine(MessageFormat.format("Ole found of type: {0}", shape.getOleFormat().getProgId())); if (shape.getSignatureLine() != null) appendLine(MessageFormat.format("Found signature line for: {0}, {1}", shape.getSignatureLine().getSigner(), shape.getSignatureLine().getSignerTitle())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a Shape node is visited /// </summary> public int visitShapeEnd(Shape shape) { mTextIndentLevel--; mShapesVisited++; appendLine(MessageFormat.format("End of {0}", shape.getShapeType())); return VisitorAction.CONTINUE; } /// <summary> /// Called when the start of a GroupShape node is visited /// </summary> public int visitGroupShapeStart(GroupShape groupShape) { appendLine(MessageFormat.format("Shape group found: {0}", groupShape.getShapeType())); mTextIndentLevel++; return VisitorAction.CONTINUE; } /// <summary> /// Called when the end of a GroupShape node is visited /// </summary> public int visitGroupShapeEnd(GroupShape groupShape) { mTextIndentLevel--; appendLine(MessageFormat.format("End of {0}", groupShape.getShapeType())); return VisitorAction.CONTINUE; } private int mShapesVisited; private int mTextIndentLevel; private StringBuilder mStringBuilder; }
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.AdjustWithEffects.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:
Creates a simple document from scratch using the Aspose.Words object model.// Create an "empty" document. Note that like in Microsoft Word, // the empty document has one section, body and one paragraph in it. Document doc = new Document(); // This truly makes the document empty. No sections (not possible in Microsoft Word). doc.removeAllChildren(); // Create a new section node. // Note that the section has not yet been added to the document, // but we have to specify the parent document. 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); // The section that we created is empty, lets populate it. The section needs at least the Body node. 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); // So far we have one empty paragraph in the document. // The document is valid and can be saved, but lets add some text before saving. // Create a new run of text and add it to our paragraph. Run run = new Run(doc); run.setText("Hello World!"); run.getFont().setColor(Color.RED); para.appendChild(run); // As a matter of interest, you can retrieve text of the whole document and // see that \x000c is automatically appended. \x000c is the end of section character. System.out.println(doc.getText()); // Save the document. doc.save(getArtifactsDir() + "Section.CreateFromScratch.doc");
public Node deepClone(boolean isCloneChildren)
Example:
Shows how to clone composite nodes with and without their child nodes.// Create a new empty document. Document doc = new Document(); // Add some text to the first paragraph Paragraph para = doc.getFirstSection().getBody().getFirstParagraph(); para.appendChild(new Run(doc, "Some text")); // Clone the paragraph and the child nodes. Node cloneWithChildren = para.deepClone(true); // Only clone the paragraph and no child nodes. Node cloneWithoutChildren = para.deepClone(false);
@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() + "Table.NestedTables.doc"); int tableIndex = 0; for (Table table : (Iterable<Table>) doc.getChildNodes(NodeType.TABLE, true)) { // First lets find if any cells in the table have tables themselves as children. int count = getChildTableCount(table); System.out.println(MessageFormat.format("Table #{0} has {1} tables directly within its cells", tableIndex, 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); if (tableDepth > 0) { System.out.println(MessageFormat.format("Table #{0} is nested inside another table at depth of {1}", tableIndex, tableDepth)); } else { System.out.println(MessageFormat.format("Table #{0} is a non nested table (is not a child of another table)", tableIndex)); } tableIndex++; } } /** * 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() + "Table.NestedTables.doc"); int tableIndex = 0; for (Table table : (Iterable<Table>) doc.getChildNodes(NodeType.TABLE, true)) { // First lets find if any cells in the table have tables themselves as children. int count = getChildTableCount(table); System.out.println(MessageFormat.format("Table #{0} has {1} tables directly within its cells", tableIndex, 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); if (tableDepth > 0) { System.out.println(MessageFormat.format("Table #{0} is nested inside another table at depth of {1}", tableIndex, tableDepth)); } else { System.out.println(MessageFormat.format("Table #{0} is a non nested table (is not a child of another table)", tableIndex)); } tableIndex++; } } /** * 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 test if a node is inside a field by using an XPath expression.// Let's pick a document we know has some fields in. Document doc = new Document(getMyDir() + "MailMerge.MergeImage.doc"); // Let's say we want to check if the Run below is inside a field. Run run = (Run) doc.getChild(NodeType.RUN, 5, true); // 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. for (Node node : (Iterable<Node>) resultList) { if (node == run) { System.out.println("The node is found inside a field"); break; } }
Example:
Shows how to extract a specific child node from a CompositeNode by using the GetChild method and passing the NodeType and index.Paragraph paragraph = (Paragraph) doc.getChild(NodeType.PARAGRAPH, 0, true);
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 extract images from a document and save them as files.public void extractImagesToFiles() throws Exception { Document doc = new Document(getMyDir() + "Image.SampleImages.doc"); NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true); int imageIndex = 0; for (Shape shape : (Iterable<Shape>) shapes) { if (shape.hasImage()) { String imageFileName = MessageFormat.format("Image.ExportImages.{0}{1}", imageIndex, FileFormatUtil.imageTypeToExtension(shape.getImageData().getImageType())); shape.getImageData().save(getArtifactsDir() + imageFileName); imageIndex++; } } }
Example:
Demonstrates how to remove a specified TOC from a document.public void removeTOCFromDocument() throws Exception { // Open a document which contains a TOC. Document doc = new Document(getMyDir() + "Document.TableOfContents.doc"); // Remove the first TOC from the document. Field tocField = doc.getRange().getFields().get(0); tocField.remove(); // Save the output. doc.save(getArtifactsDir() + "Document.TableOfContentsRemoveTOC.doc"); }
@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() + "Shape.VarietyOfShapes.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.ShapeRenderer {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 the difference between calling the GetText and ToString methods on a node.Document doc = new Document(); // Enter a dummy field into the document. DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField("MERGEFIELD Field"); // GetText will retrieve all field codes and special characters System.out.println("GetText() Result: " + doc.getText()); // ToString will export the node to the specified format. When converted to text it will not retrieve fields code // or special characters, but will still contain some natural formatting characters such as paragraph markers etc. // This is the same as "viewing" the document as if it was opened in a text editor. System.out.println("ToString() Result: " + doc.toString(SaveFormat.TEXT));
Example:
Finds and outputs all paragraphs in a document that are bulleted or numbered.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()); } }
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.doc"); // 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. int index = body.getChildNodes().indexOf(body.getLastParagraph());
Example:
Retrieves the index of a cell in a row.int cellIndex = row.indexOf(cell);
Example:
Retrieves the index of a row in a table.int rowIndex = table.indexOf(row);
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 add, update and delete child nodes from within a CompositeNode.Document doc = new Document(); // An empty document has one paragraph by default Assert.assertEquals(doc.getFirstSection().getBody().getParagraphs().getCount(), 1); // 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(paragraph.getText(), "Initial text. " + (char) 12); // 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(paragraph.getText(), "Run 1. Run 2. Initial text. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 4); // 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(paragraph.getText(), "Run 1. Updated run 2. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 3);
Example:
Shows how to replace all textboxes with images.Document doc = new Document(getMyDir() + "Shape.ReplaceTextboxesWithImages.doc"); // 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() + "Hammer.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.doc");
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 within a CompositeNode.Document doc = new Document(); // An empty document has one paragraph by default Assert.assertEquals(doc.getFirstSection().getBody().getParagraphs().getCount(), 1); // 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(paragraph.getText(), "Initial text. " + (char) 12); // 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(paragraph.getText(), "Run 1. Run 2. Initial text. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 4); // 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(paragraph.getText(), "Run 1. Updated run 2. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 3);
public java.util.Iterator<Node> iterator()
Example:
Shows how to enumerate immediate children of a CompositeNode using the enumerator provided by the ChildNodes collection.NodeCollection children = paragraph.getChildNodes(); for (Node child : (Iterable<Node>) children) { // Paragraph may contain children of various types such as runs, shapes and so on. if (child.getNodeType() == NodeType.RUN) { // Say we found the node that we want, do something useful. 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); // Every GroupShape is top level GroupShape group = new GroupShape(doc); Assert.assertTrue(group.isGroup()); Assert.assertTrue(group.isTopLevel()); // And it is a floating shape too, so we can set its coordinates independently of the text Assert.assertEquals(group.getWrapType(), WrapType.NONE); // Make it a floating shape group.setWrapType(WrapType.NONE); // 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.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; }
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 within a CompositeNode.Document doc = new Document(); // An empty document has one paragraph by default Assert.assertEquals(doc.getFirstSection().getBody().getParagraphs().getCount(), 1); // 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(paragraph.getText(), "Initial text. " + (char) 12); // 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(paragraph.getText(), "Run 1. Run 2. Initial text. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 4); // 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(paragraph.getText(), "Run 1. Updated run 2. Run 3. " + (char) 12); Assert.assertEquals(paragraph.getChildNodes(NodeType.ANY, true).getCount(), 3);
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.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; }
public void remove()
Example:
Shows how to remove all nodes of a specific type from a composite node. In this example we remove tables from a section body.// Get the section that we want to work on. Section section = doc.getSections().get(0); Body body = section.getBody(); // Select the first child node in the body. Node curNode = body.getFirstChild(); while (curNode != null) { // Save the pointer to the next sibling node because if the current // node is removed from the parent in the next step, we will have // no way of finding the next node to continue the loop. 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; }
Example:
Shows how to delete all images from a document.// 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(); }
public void removeAllChildren()
Example:
Creates a simple document from scratch using the Aspose.Words object model.// Create an "empty" document. Note that like in Microsoft Word, // the empty document has one section, body and one paragraph in it. Document doc = new Document(); // This truly makes the document empty. No sections (not possible in Microsoft Word). doc.removeAllChildren(); // Create a new section node. // Note that the section has not yet been added to the document, // but we have to specify the parent document. 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); // The section that we created is empty, lets populate it. The section needs at least the Body node. 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); // So far we have one empty paragraph in the document. // The document is valid and can be saved, but lets add some text before saving. // Create a new run of text and add it to our paragraph. Run run = new Run(doc); run.setText("Hello World!"); run.getFont().setColor(Color.RED); para.appendChild(run); // As a matter of interest, you can retrieve text of the whole document and // see that \x000c is automatically appended. \x000c is the end of section character. System.out.println(doc.getText()); // Save the document. doc.save(getArtifactsDir() + "Section.CreateFromScratch.doc");
public Node removeChild(Node oldChild)
The parent of oldChild is set to null after the node is removed.
oldChild
- The node to remove.Example:
Demonstrates use of methods of Node and CompositeNode to remove a section before the last section in the document.// Document is a CompositeNode and LastChild returns the last child node in the Document node. // Since the Document can contain only Section nodes, the last child is the last section. Node lastSection = doc.getLastChild(); // Each node knows its next and previous sibling nodes. // Previous sibling of a section is a section before the specified section. // If the node is the first child, PreviousSibling will return null. Node sectionBeforeLast = lastSection.getPreviousSibling(); if (sectionBeforeLast != null) { doc.removeChild(sectionBeforeLast); }
@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() + "Document.doc"); // Remove smart tags from the first paragraph in the document. doc.getFirstSection().getBody().getFirstParagraph().removeSmartTags();
Example:
Shows how to remove all smart tags from a document.Document doc = new Document(getMyDir() + "Document.doc"); doc.removeSmartTags();
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() + "Table.Document.doc"); // 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");
Example:
Shows how to test if a node is inside a field by using an XPath expression.// Let's pick a document we know has some fields in. Document doc = new Document(getMyDir() + "MailMerge.MergeImage.doc"); // Let's say we want to check if the Run below is inside a field. Run run = (Run) doc.getChild(NodeType.RUN, 5, true); // 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. for (Node node : (Iterable<Node>) resultList) { if (node == run) { System.out.println("The node is found inside a field"); break; } }
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() + "Table.Document.doc"); // 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");
@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 using custom specified options.Document doc = new Document(getMyDir() + "Document.doc"); // Extract the last paragraph in the document to convert to HTML. Node node = doc.getLastSection().getBody().getLastParagraph(); // Create an instance of HtmlSaveOptions and set a few options. HtmlSaveOptions saveOptions = new HtmlSaveOptions(); saveOptions.setExportHeadersFootersMode(ExportHeadersFootersMode.PER_SECTION); saveOptions.setExportRelativeFontSize(true); // Convert the document to HTML and return as a string. Pass the instance of HtmlSaveOptions to // to use the specified options during the conversion. String nodeAsHtml = 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() + "Lists.PrintOutAllLists.doc"); 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("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("Numerical Id: " + label.getLabelValue()); // Combine them together to include the list label with the text in the output. System.out.println("List label combined with text: " + label.getLabelString() + " " + paragraphText); listParaCount++; } }
Example:
Shows the difference between calling the GetText and ToString methods on a node.Document doc = new Document(); // Enter a dummy field into the document. DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField("MERGEFIELD Field"); // GetText will retrieve all field codes and special characters System.out.println("GetText() Result: " + doc.getText()); // ToString will export the node to the specified format. When converted to text it will not retrieve fields code // or special characters, but will still contain some natural formatting characters such as paragraph markers etc. // This is the same as "viewing" the document as if it was opened in a text editor. System.out.println("ToString() Result: " + doc.toString(SaveFormat.TEXT));
Example:
Exports the content of a node to string in HTML format using default options.Document doc = new Document(getMyDir() + "Document.doc"); // Extract the last paragraph in the document to convert to HTML. Node node = doc.getLastSection().getBody().getLastParagraph(); // When ToString is called using the SaveFormat overload then conversion is executed using default save options. // When saving to HTML using default options the following settings are set: // ExportImagesAsBase64 = true // CssStyleSheetType = CssStyleSheetType.Inline // ExportFontResources = false String nodeAsHtml = node.toString(SaveFormat.HTML);