Utilizzo di Group Shapes in documenti Word
Contents
[
Hide
]
A volte è necessario aggiungere un group shape in un documento di Word. Tale group shape è costituito da più forme.
In Microsoft Word, è possibile aggiungere rapidamente un group shape usando il comando/pulsante di gruppo. Le singole forme di un gruppo possono essere spostate separatamente.
In Aspose.Words è molto facile aggiungere un group shape usando la classe GroupShape. Shape viene creato separatamente usando la classe Shape e poi aggiunto nell’oggetto GroupShape usando il metodo AppendChild.
Di seguito sono riportati alcuni dei tipi Shape
supportati in Aspose.Words. Per l’elenco completo, visitare ShapeType:
- Rettangolo
- RoundRectangle
- RoundRectangle
- Ellisse
- Diamante
- Triangolo
- RightTriangle
- Parallelogramma
- Trapezio
- Esagono
- Octagon
Esempio
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");
}
}