Робота з Group Види у документах Word

Contents
[ ]

Іноді потрібно додати group shape у документ Word. Таке group shape складається з декількох форм

У Microsoft Word, Ви можете швидко додати group shape використання Group команд/буттон. Індивідуальні форми в групі можуть переміщатися окремо.

У Aspose.Words дуже легко додати group shape використання GroupShape клас. Shape створюється окремо Shape клас і потім додано в GroupShape об’єкт за допомогою AppendChild метод.

Нижче наведено деякі з Shape види, що підтримуються Aspose.Wordsй Для повного списку, будь ласка, відвідайте ShapeType:

  • прямокутник
  • Круглий прямокутник
  • Круглий прямокутник
  • Елліпс
  • Алмаз
  • Трикутник
  • ПравоТрикутник
  • Паралелограма
  • Трапеція
  • Хексагон
  • Октагон

Example

*Додати group shape у документ Word. Ім’я *

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");
	}
}