添加或插入工作表中的列

向工作表添加列

要向工作表添加新列,请按照以下步骤进行:

  • 向您的表单中添加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);