Aspose.Diagram.Examples.CSharp.Working_with_Text.GetPlainTextOfVisio.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_ShapeText();
            // Load diagram
            Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");

            // Get Visio diagram page
            Aspose.Diagram.Page page = diagram.Pages.GetPage("Page-1");

            // Iterate through the shapes
            foreach (Aspose.Diagram.Shape shape in page.Shapes)
            {
                // Extract plain text from the shape
                GetShapeText(shape);
            }
            // Display extracted text
            Console.WriteLine(text);
        }
        private static void GetShapeText(Aspose.Diagram.Shape shape)
GetPlainTextOfVisio