Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Někdy musíte přidat group shape do Word dokumentu. Takový group shape sestává z více tvarů
In Microsoft Word, můžete rychle přidat group shape s použitím Group příkaz/tlačítko. Jednotlivé tvary ve skupině lze pohybovat samostatně.
In Aspose.Words je velmi snadné přidat a group shape podání GroupShape třída. Shape je vytvořen samostatně pomocí Shape třída a poté přidána GroupShape pomocí objektu AppendChild metoda.
Níže jsou uvedeny některé z Shape typy podporované v Aspose.Words. Pro kompletní seznam prosím navštivte ShapeType:
Example
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");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.