Arbeiten mit Group Shapes in Word-Dokumenten
Contents
[
Hide
]
Manchmal müssen Sie einem Word-Dokument eine group shape hinzufügen. Eine solche group shape besteht aus mehreren Formen.
In Microsoft Word können Sie mit dem Gruppenbefehl / der Schaltfläche schnell eine group shape hinzufügen. Einzelne Formen in einer Gruppe können separat verschoben werden.
In Aspose.Words ist es sehr einfach, eine group shape mit der GroupShape -Klasse hinzuzufügen. Shape wird separat mit der Klasse Shape erstellt und dann mit der Methode AppendChild zum Objekt GroupShape hinzugefügt.
Nachfolgend sind einige der Shape
-Typen aufgeführt, die in Aspose.Words unterstützt werden. Für eine vollständige Liste besuchen Sie bitte ShapeType:
- Rechteck
- RoundRectangle
- RoundRectangle
- Ellipse
- Diamond
- Dreieck
- RightTriangle
- Parallelogramm
- Trapezförmig
- Sechseck
- Octagon
Beispiel
Add a group shape into a Word document.
package AddGroupShape;
import Aspose.Words.*;
import Aspose.Words.Drawing.*;
import Aspose.Words.Fields.*;
public class Program
{
public static void main(String[] args)
{
Aspose.Words.Document doc = new Aspose.Words.Document();
doc.EnsureMinimum();
GroupShape gs = new GroupShape(doc);
Aspose.Words.Drawing.Shape shape = new Aspose.Words.Drawing.Shape(doc, Aspose.Words.Drawing.ShapeType.AccentBorderCallout1);
shape.Width = 100;
shape.Height = 100;
gs.AppendChild(shape);
Aspose.Words.Drawing.Shape shape1 = new Aspose.Words.Drawing.Shape(doc, Aspose.Words.Drawing.ShapeType.ActionButtonBeginning);
shape1.Left = 100;
shape1.Width = 100;
shape1.Height = 200;
gs.AppendChild(shape1);
gs.Width = 200;
gs.Height = 200;
gs.CoordSize = new System.Drawing.Size(200, 200);
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertNode(gs);
doc.Save("c:\\TestFile.docx");
}
}