本文介绍了旋转插入PPT幻灯片中的线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已使用c#控制台应用程序将一行插入到幻灯片中.插入的线是倾斜的.我必须将线旋转一定角度,以便线是笔直的.我是否必须使用任何名称空间来实现此目的.

我正在编写的代码是..

I have inserted a line into a power point slide using c# console application. The line inserted is slant. I have to rotate the line with some angle, so that line is straight. Do i have to use any namespace to achieve this.

the code i am writing is..

public void AddLines(PowerPoint.Slide slide, float left, float top, float width, float height)
        {
            try
            {
                PowerPoint.Shape objAddLines = slide.Shapes.AddLine(left, top, width, height);
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }

推荐答案


这篇关于旋转插入PPT幻灯片中的线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 07:38