在工作表中添加或插入列
Contents
[
Hide
]
在本主题中,我们将介绍使用 Aspose.Cells.GridDesktop 的 API 在运行时向工作表添加和插入列的基本功能。添加和插入之间的基本区别在于,另外,在工作表的列集合的末尾添加列,而在插入中,可以将列添加到工作表中的任何指定位置。
向工作表添加列
要向工作表添加新列,请按照以下步骤操作:
- 将 Aspose.Cells.GridDesktop 控件添加到您的形式
- 访问任何想要的工作表
- 添加柱子到工作表
在工作表中插入一列
要在工作表的指定位置插入新列,请按照以下步骤操作:
- 将 Aspose.Cells.GridDesktop 控件添加到您的形式
- 访问任何想要的工作表
- 插入柱子进入工作表 (通过指定插入列的索引在特定位置)
// Accessing first worksheet of the Grid
Aspose.Cells.GridDesktop.Worksheet sheet = gridDesktop1.Worksheets[0];
// Inserting column to the worksheet to the first position.
sheet.Cells.InsertColumn(0);