Aspose.Slides.Examples.CSharp.Presentations.Opening.GetPositionCoordinatesofPortion.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_PresentationOpening();

            using (Presentation presentation = new Presentation(dataDir + "Shapes.pptx"))
            {
                IAutoShape shape = (IAutoShape)presentation.Slides[0].Shapes[0];
                var textFrame = (ITextFrame)shape.TextFrame;

                foreach (var paragraph in textFrame.Paragraphs)
                {
                    foreach (Portion portion in paragraph.Portions)
                    {
                        PointF point = portion.GetCoordinates();
                        Console.Write(Environment.NewLine + "Corrdinates X =" + point.X + " Corrdinates Y =" + point.Y);
                    }
                }
            }

        }
    }
GetPositionCoordinatesofPortion