Working with Shapes
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 in Aspose.Words are represented by the Shape class.
Inserting Shapes Using Document Builder
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 the 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:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
Shape shape = builder.InsertShape(ShapeType.TextBox, RelativeHorizontalPosition.Page, 100, | |
RelativeVerticalPosition.Page, 100, 50, 50, WrapType.None); | |
shape.Rotation = 30.0; | |
builder.Writeln(); | |
shape = builder.InsertShape(ShapeType.TextBox, 50, 50); | |
shape.Rotation = 30.0; | |
OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(SaveFormat.Docx) | |
{ | |
Compliance = OoxmlCompliance.Iso29500_2008_Transitional | |
}; | |
doc.Save(ArtifactsDir + "WorkingWithShapes.InsertShape.docx", saveOptions); |
Set Aspect Ratio Locked
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:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
Shape shape = builder.InsertImage(ImagesDir + "Transparent background logo.png"); | |
shape.AspectRatioLocked = false; | |
doc.Save(ArtifactsDir + "WorkingWithShapes.AspectRatioLocked.docx"); |
Set Shape Layout In Cell
You can also specify whether the shape is displayed inside a table or outside of it using the IsLayoutInCell property.
The following code example shows how to work with the IsLayoutInCell property:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
builder.StartTable(); | |
builder.RowFormat.Height = 100; | |
builder.RowFormat.HeightRule = HeightRule.Exactly; | |
for (int i = 0; i < 31; i++) | |
{ | |
if (i != 0 && i % 7 == 0) builder.EndRow(); | |
builder.InsertCell(); | |
builder.Write("Cell contents"); | |
} | |
builder.EndTable(); | |
Shape watermark = new Shape(doc, ShapeType.TextPlainText) | |
{ | |
RelativeHorizontalPosition = RelativeHorizontalPosition.Page, | |
RelativeVerticalPosition = RelativeVerticalPosition.Page, | |
IsLayoutInCell = true, // Display the shape outside of the table cell if it will be placed into a cell. | |
Width = 300, | |
Height = 70, | |
HorizontalAlignment = HorizontalAlignment.Center, | |
VerticalAlignment = VerticalAlignment.Center, | |
Rotation = -40 | |
}; | |
watermark.FillColor = Color.Gray; | |
watermark.StrokeColor = Color.Gray; | |
watermark.TextPath.Text = "watermarkText"; | |
watermark.TextPath.FontFamily = "Arial"; | |
watermark.Name = $"WaterMark_{Guid.NewGuid()}"; | |
watermark.WrapType = WrapType.None; | |
Run run = doc.GetChildNodes(NodeType.Run, true)[doc.GetChildNodes(NodeType.Run, true).Count - 1] as Run; | |
builder.MoveTo(run); | |
builder.InsertNode(watermark); | |
doc.CompatibilityOptions.OptimizeFor(MsWordVersion.Word2010); | |
doc.Save(ArtifactsDir + "WorkingWithShapes.LayoutInCell.docx"); |
Create Snip Corner Rectangle
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:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
builder.InsertShape(ShapeType.TopCornersSnipped, 50, 50); | |
OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(SaveFormat.Docx) | |
{ | |
Compliance = OoxmlCompliance.Iso29500_2008_Transitional | |
}; | |
doc.Save(ArtifactsDir + "WorkingWithShapes.AddCornersSnipped.docx", saveOptions); |
Get Actual Shape Bounds Points
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 BoundsInPoints property.
The following code example shows how to work with the BoundsInPoints property:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
Shape shape = builder.InsertImage(ImagesDir + "Transparent background logo.png"); | |
shape.AspectRatioLocked = false; | |
Console.Write("\nGets the actual bounds of the shape in points: "); | |
Console.WriteLine(shape.GetShapeRenderer().BoundsInPoints); |
Specify Vertical Anchor
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:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
Shape textBox = builder.InsertShape(ShapeType.TextBox, 200, 200); | |
textBox.TextBox.VerticalAnchor = TextBoxAnchor.Bottom; | |
builder.MoveTo(textBox.FirstParagraph); | |
builder.Write("Textbox contents"); | |
doc.Save(ArtifactsDir + "WorkingWithShapes.VerticalAnchor.docx"); |
Detect SmartArt Shape
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:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(MyDir + "SmartArt.docx"); | |
int count = doc.GetChildNodes(NodeType.Shape, true).Cast<Shape>().Count(shape => shape.HasSmartArt); | |
Console.WriteLine("The document has {0} shapes with SmartArt.", count); |
Insert Horizontal Rule into Document
You can insert horizontal rule shape into a document using the InsertHorizontalRule method.
The following code example shows how to do this:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
Document doc = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(doc); | |
builder.Writeln("Insert a horizontal rule shape into the document."); | |
builder.InsertHorizontalRule(); | |
doc.Save(ArtifactsDir + "AddContentUsingDocumentBuilder.InsertHorizontalRule.docx"); |
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 shows how to set HorizontalRuleFormat:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
DocumentBuilder builder = new DocumentBuilder(); | |
Shape shape = builder.InsertHorizontalRule(); | |
HorizontalRuleFormat horizontalRuleFormat = shape.HorizontalRuleFormat; | |
horizontalRuleFormat.Alignment = HorizontalRuleAlignment.Center; | |
horizontalRuleFormat.WidthPercent = 70; | |
horizontalRuleFormat.Height = 3; | |
horizontalRuleFormat.Color = Color.Blue; | |
horizontalRuleFormat.NoShade = true; | |
builder.Document.Save(ArtifactsDir + "AddContentUsingDocumentBuilder.HorizontalRuleFormat.docx"); |
Import Shapes with Math XML as Shapes into DOM
You can use the ConvertShapeToOfficeMath property to convert the shapes with EquationXML to Office Math objects. The default value of this property corresponds to Microsoft 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:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. | |
LoadOptions loadOptions = new LoadOptions { ConvertShapeToOfficeMath = true }; | |
Document doc = new Document(MyDir + "Office math.docx", loadOptions); | |
doc.Save(ArtifactsDir + "WorkingWithLoadOptions.ConvertShapeToOfficeMath.docx", SaveFormat.Docx); |