Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
This topic discusses how to work programmatically with shapes using Aspose.Words.
The shapes in Aspose.Words represent an object in the drawing layer, such as an AutoShape, textbox, freeform, OLE object, ActiveX control, or picture. A Word document can contain one or more different shapes. Shapes of the document are represented by the Shape class.
You can insert inline shape with specified type and size and free-floating shape with the specified position, size and text wrap type into a document using insertShape method. The insertShape method allows inserting DML shape into the document model. The document must be saved in the format, which supports DML shapes, otherwise, such nodes will be converted to VML shape, while document saving.
The following code example shows how to insert these types of shapes into the document:
Using Aspose.Words, you can specify whether the shape’s aspect ratio is locked through the aspectRatioLocked property.
The following code example shows how to work with the AspectRatioLocked property:
You can also specify whether the shape is displayed inside a table or outside of it using the isLayoutInCell property property.
The following code example shows how to work with the IsLayoutInCell property:
You can create a snip corner rectangle using Aspose.Words. The shape types are SingleCornerSnipped, TopCornersSnipped, DiagonalCornersSnipped, TopCornersOneRoundedOneSnipped, SingleCornerRounded, TopCornersRounded, and DiagonalCornersRounded.
The DML shape is created using insertShape method with these shape types. These types cannot be used to create VML shapes. Attempt to create shape by using the public constructor of the Shape class raises the “NotSupportedException” exception.
The following code example shows how to insert these type of shapes into the document:
Using Aspose.Words API, you can get the location and size of the shape containing block in points, relative to the anchor of the topmost shape. To do this, use the boundsInPoints2 property.
The following code example shows how to work with the BoundsInPoints property:
You can specify the text vertical alignment within a shape using the verticalAnchor property.
The following code example shows how to work with the VerticalAnchor property:
Aspose.Words also allows to detect if the Shape has a SmartArt object. To do this, use the hasSmartArt property.
The following code example shows how to work with the HasSmartArt property:
You can insert horizontal rule shape into a document using the insertHorizontalRule method.
The following code example shows how to do this:
Aspose.Words API provides the horizontalRuleFormat property to access the properties of the horizontal rule shape. The HorizontalRuleFormat class exposes basic properties like height, color, noShade etc. for the formatting of a horizontal rule.
The following code example demonstrates how to set HorizontalRuleFormat:
Aspose.Words API provides Shape.insert_ole_object_as_icon function to insert an embedded or linked OLE object as an icon into the document. This function allows specifying the icon file and the caption. The OLE object type shall be detected using the file extension.
The following code example demonstrates how to set insert OLE object as an Icon into the document:
You can use convertShapeToOfficeMath property to convert the shapes with EquationXML to Office Math objects. The default value of this property corresponds to MS Word behavior i.e. shapes with equation XML are not converted to Office math objects.
The following code example shows how to convert shapes to Office Math objects:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.