Bekerja dengan Group Shapes di Dokumen Word
Terkadang Anda perlu menambahkan group shape ke dalam dokumen Word. group shape seperti itu terdiri dari banyak bentuk.
Di Microsoft Word, Anda dapat menambahkan group shape dengan cepat menggunakan perintah/tombol Grup. Bentuk individu dalam grup dapat dipindahkan secara terpisah.
Dalam Aspose.Words sangat mudah untuk menambahkan group shape menggunakan kelas GroupShape. Bentuk dibuat secara terpisah menggunakan kelas Shape dan kemudian ditambahkan ke objek GroupShape menggunakan metode AppendChild.
Contoh kode berikut menunjukkan cara menambahkan group shape ke dalam dokumen Word:
For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-C | |
// The path to the documents directory. | |
System::String outputDataDir = GetOutputDataDir_WorkingWithDocument(); | |
System::SharedPtr<Document> doc = System::MakeObject<Document>(); | |
doc->EnsureMinimum(); | |
System::SharedPtr<GroupShape> gs = System::MakeObject<GroupShape>(doc); | |
System::SharedPtr<Shape> shape = System::MakeObject<Shape>(doc, ShapeType::AccentBorderCallout1); | |
shape->set_Width(100); | |
shape->set_Height(100); | |
gs->AppendChild(shape); | |
System::SharedPtr<Shape> shape1 = System::MakeObject<Shape>(doc, ShapeType::ActionButtonBeginning); | |
shape1->set_Left(100); | |
shape1->set_Width(100); | |
shape1->set_Height(200); | |
gs->AppendChild(shape1); | |
gs->set_Width(200); | |
gs->set_Height(200); | |
gs->set_CoordSize(System::Drawing::Size(200, 200)); | |
System::SharedPtr<DocumentBuilder> builder = System::MakeObject<DocumentBuilder>(doc); | |
builder->InsertNode(gs); | |
System::String outputPath = outputDataDir + u"AddGroupShapeToDocument.doc"; | |
// Save the document to disk. | |
doc->Save(outputPath); |
Di bawah ini adalah beberapa tipe Shape
yang didukung di Aspose.Words. Untuk daftar lengkapnya, silakan kunjungi ShapeType:
- Persegi panjang
- RoundRectangle
- RoundRectangle
- Ellipse
- Berlian
- Segitiga
- RightTriangle
- Jajaran genjang
- Trapesium
- Hexagon
- Octagon