Aspose.Diagram.Examples.CSharp.Working_Shapes.GetAllConnectedShapes.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // ExStart:GetAllConnectedShapes
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_Shapes();

            // Call a Diagram class constructor to load the VSDX diagram
            Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");
            // Get shape by id
            Shape shape = diagram.Pages.GetPage("Page-3").Shapes.GetShape(16);
            // Get connected shapes
            long[] connectedShapeIds = shape.ConnectedShapes(ConnectedShapesFlags.ConnectedShapesAllNodes, null);

            foreach (long id in connectedShapeIds)
            {
                shape = diagram.Pages.GetPage("Page-3").Shapes.GetShape(id);
                Console.WriteLine("ID: " + shape.ID + "\t\t Name: " + shape.Name);
            }
            // ExEnd:GetAllConnectedShapes
        }
    }
GetAllConnectedShapes