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

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

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // ExStart:MoveVisioShape
            // 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 page by name
            Page page = diagram.Pages.GetPage("Page-3");
            // Get shape by id
            Shape shape = page.Shapes.GetShape(16);
            // Move shape from its position, it adds values in coordinates
            shape.Move(1, 1);

            // Save diagram
            diagram.Save(dataDir + "MoveVisioShape_out.vsdx", SaveFileFormat.VSDX);
            // ExEnd:MoveVisioShape
        }
    }
MoveVisioShape