Add, Retrieve, Copy and Read Visio Shape Data
Adding a New Shape in Visio
Aspose.Diagram for .NET allows you to manipulate Microsoft Visio diagrams in different ways. One of the things you can do is add new shapes to a diagrams. Aspose.Diagram for .NET lets you to add a new shape to a diagram. The added shape can also be customized using Aspose.Diagram for .NET.
This topic describes how to add a new rectangle shape to a diagram.
Use Aspose.Diagram for .NET API to create new shapes and then add these shapes to a diagram’s shapes collection.
To add a new shape:
- Find the page - Each Visio diagram contains a collection of pages. Developers may retrieve the page by page ID or Name and store the required page in the Page class object.
- Add the require Master of a Shape - Each Visio diagram contains a collection of masters. Developers may add a Master (by ID or Name) from the existing stencil file (by direct path or file stream).
- Add shape in the Visio diagram - Developers can place a new shape in the Visio diagram by page index (starting from 0), master name, PinX, PinY, height (optional) and width (optional).
- Set shape properties - AddShape method of the Diagram class returns the shape ID. Developers can retrieve shape from a Visio diagram by using this ID, and then set its properties, e.g. color, position, alignment and text.
The input diagram |
The diagram with a shape added |
---|
Add Programming Sample
The code snippet below shows how to do each step.
Retrieving Shape Information
Working with Diagrams explains how to create diagrams, add shapes and connectors, and then how to retrieve information about diagram elements such as pages, masters, connectors and fonts. This article looks at how to retrieve information about shapes in a diagram.
Each shape in a diagram has an ID and a name. The ID is important when programming with Visio: it is the main method for accessing a shape. Each shape also retains information about what master (stencil) it is made from.
A Shape is an object in a Visio drawing. The Shapes property, exposed by the Page class, supports a collection of Aspose.Diagram.Shape objects. The Shapes property can be used to retrieve information about a shape.
In the console window below, for example, you can see information output for a diagram that contained four shapes: two terminators, a process and a dynamic connector. Each has a unique ID as well as the name of the master (stencil) shape.
A console window showing shape information |
---|
To retrieve Visio page information: |
- Loads a diagram.
- Sets up a foreach loop to loop through all the shapes in the diagram.
- Displays shape information.
Retrieve Programming Sample
The following piece of code retrieve the shape information from a Visio diagram.
Copy Shapes from an Existing Visio
Aspose.Diagram for .NET API allows developers to copy shapes from the source Visio page to the new Visio diagram page. It also supports copying group shapes. This article describes how to copy all shapes from the the source diagram page.
To copy shapes, developers should also copy source PageSheet and source Visio themes to preserve shape fill style and other formatting properties.
This example work as follows:
- Load a source Visio.
- Initialize a new Visio
- Add masters and themes from the source Visio.
- Get page from the source Visio.
- Copy its PageSheet to the new Visio Page.
- Iterate through the shapes of the source Visio page.
- Set its new id and add to the new Visio page.
- Save the new Visio in the local storage.
Copy Programming Sample
Copy a Visio Shape to another Shape instance
The Copy method of the Shape class takes a shape instance to clone.
// import diagram
Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");
Shape newShape = new Shape();
// copy diagram
newShape.Copy(diagram.Pages[0].Shapes[0]);
newShape.ID = 3;
newShape.XForm.PinX.Value = 1;
newShape.XForm.PinY.Value = 1;
Reading Visio Shape Data
The Props collection exposed by the Shape class supports the Aspose.Diagram.Prop object. The property can be used to read a shape’s data (custom properties).
Read All Shape Properties
To identify custom properties in Microsoft Visio:
- In a diagram, right-click a shape.
- Select Data, then Shape Data from the menu. Any existing properties are listed in the dialog.
A shape’s data, as seen in Microsoft Visio. | ** |
---|---|
A console window showing the shape data output. | ** |
---|---|
Read Programming Sample
The code snippets below reads shape data (custom properties).
Read a Shape Property by Name
The code snippet below reads a shape property by name (custom property).
Read by Name Programming Sample
Read InheritProps of Shape
The code snippet below reads InheritProps of a shape.
Add and Connect Visio Shapes
Aspose.Diagram for .NET allows you to add customized shapes and connect them in diagrams you create.
Adding and Connecting Shapes
The code in the samples below show how to:
- Create a diagram.
- Add and customize shapes (rectangle, star, hexagon).
- Connect the star and hexagon shapes to the rectangle.
- Save the diagram.
Adding and Connecting Shapes Programming Sample
Use Connection indexes to connect shapes
Aspose.Diagram for .NET API already allows developers to add new connecting points on the shape, and developers can now connect shapes using connection indexes.
Use Connection indexes to connect shapes
The ConnectShapesViaConnectorIndex member exposed by the Page class can be used to connect shapes using connection indexes. The following code shows how to connect shapes:
- Initialize a new drawing.
- Place four rectangle shapes
- Add two additional connection points, so that there would be three connection points on the bottom border line
- Connect first shape from each bottom connection to other three rectangle shapes from Top with dynamic connectors
- Save drawing
Use connection indexes to connect shapes Programming Sample
Use the following code in your .NET application to connect shapes using connection indexes with Aspose.Diagram for .NET API.
C#
// initialize a new drawing
Diagram diagram = new Diagram();
// get page by index
Aspose.Diagram.Page page = diagram.Pages[0];
// add masters
string connectorMaster = "Dynamic connector", rectangle = "Rectangle";
int pageNumber = 0;
double width = 2, height = 2, pinX = 4.25, pinY = 9.5;
diagram.AddMaster(@"C:\temp\Basic Shapes.vss", rectangle);
diagram.AddMaster(@"C:\temp\Basic Shapes.vss", connectorMaster);
// add shapes
long shape1_ID = diagram.AddShape(4.5, 7, rectangle, pageNumber);
long shape2_ID = diagram.AddShape(2.25, 4.5, rectangle, pageNumber);
long shape3_ID = diagram.AddShape(4.5, 4.5, rectangle, pageNumber);
long shape4_ID = diagram.AddShape(6.75, 4.5, rectangle, pageNumber);
// get shapes by ID
Aspose.Diagram.Shape shape1 = page.Shapes.GetShape(shape1_ID);
Aspose.Diagram.Shape shape2 = page.Shapes.GetShape(shape2_ID);
Aspose.Diagram.Shape shape3 = page.Shapes.GetShape(shape3_ID);
Aspose.Diagram.Shape shape4 = page.Shapes.GetShape(shape4_ID);
// add two more connection points
Connection connection1 = new Connection();
connection1.X.Ufe.F = "Width*0.33";
connection1.Y.Ufe.F = "Height*0";
Connection connection3 = new Connection();
connection3.X.Ufe.F = "Width*0.66";
connection3.Y.Ufe.F = "Height*0";
shape1.Connections.Add(connection1);
shape1.Connections.Add(connection3);
// add connector shapes
Aspose.Diagram.Shape connector1 = new Aspose.Diagram.Shape();
Aspose.Diagram.Shape connector2 = new Aspose.Diagram.Shape();
Aspose.Diagram.Shape connector3 = new Aspose.Diagram.Shape();
long connecter1Id = diagram.AddShape(connector1, connectorMaster, 0);
long connecter2Id = diagram.AddShape(connector2, connectorMaster, 0);
long connecter3Id = diagram.AddShape(connector3, connectorMaster, 0);
// connect shapes by index of conneecting points
page.ConnectShapesViaConnectorIndex(shape1.ID, 6, shape2.ID, 3, connecter1Id);
page.ConnectShapesViaConnectorIndex(shape1.ID, 1, shape3.ID, 3, connecter2Id);
page.ConnectShapesViaConnectorIndex(shape1.ID, 7, shape4.ID, 3, connecter3Id);
// save drawing
diagram.Save(@"C:\temp\Drawing1_out.vsdx", SaveFileFormat.VSDX);
Retrieve the Parent Shape of a Sub-Shape
Aspose.Diagram for .NET allows developers to retrieve the parent shape of a sub-shape.
Get the Parent Shape
The Shape class offers ParentShape property to retrieve the parent shape.