彩票走势图

PPT控件Spire.Presentation 教程:在PPT中设置表行高度和列宽度

原创|使用教程|编辑:王香|2017-08-10 15:22:26.000|阅读 566 次

概述:Spire.Presentation是一个专业的 PowerPoint控件,用于帮助开发人员高效地创建、读取、编辑、转换和打印任PPT文档,本文介绍了如何在PPT中设置表行高度和列宽度。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

本文演示如何使用C#和VB.NET中的Spire.Presentation在PowerPoint文档中设置现有表的行高和列宽。

以下屏幕截图显示了设置行高和列宽之前的表。

图片1

详细步骤:

Step 1: 实例化Presentation对象并加载PowerPoint文档。

Presentation ppt = new Presentation();
ppt.LoadFromFile("Input.pptx");

Step 2: 获得第一张幻灯片。

ISlide slide = ppt.Slides[0];

Step 3:获取幻灯片上的第一张表。

ITable table = ppt.Slides[0].Shapes[0] as ITable;

Step 4:设置表行高和列宽。

table.TableRows[1].Height = 50;
table.ColumnsList[1].Width = 100;

Step 5:保存文档。

ppt.SaveToFile("Output.pptx", FileFormat.Pptx2013);

截图:

图片2

完整代码:

[C#]

using Spire.Presentation;
namespace Set_table_column_width_and_row_height
{
    class Program
    {
        static void Main(string[] args)
        {
            Presentation ppt = new Presentation();
            ppt.LoadFromFile("Input.pptx");
            ISlide slide = ppt.Slides[0];           
            ITable table = ppt.Slides[0].Shapes[0] as ITable;
            table.TableRows[1].Height = 50;
            table.ColumnsList[1].Width = 100;
            ppt.SaveToFile("Output.pptx", FileFormat.Pptx2013);
        }
    }
}End Namespace

[VB.NET]

Imports Spire.Presentation
Namespace Set_table_column_width_and_row_height
    Class Program
        Private Shared Sub Main(args As String())
            Dim ppt As New Presentation()
            ppt.LoadFromFile("Input.pptx")
            Dim slide As ISlide = ppt.Slides(0)
            Dim table As ITable = TryCast(ppt.Slides(0).Shapes(0), ITable)
            table.TableRows(1).Height = 50
            table.ColumnsList(1).Width = 100
            ppt.SaveToFile("Output.pptx", FileFormat.Pptx2013)
        End Sub
    End Class

慧都控件网


标签:文档管理PPT文档处理

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP