ワークシートからの列の削除

ワークシートからの列の削除

ワークシートから列を削除するには、次の手順に従ってください。

  • 任意のアクセスワークシート
  • 削除するからワークシート削除する列のインデックスを指定して
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Accessing first worksheet of the Grid
Worksheet sheet = gridDesktop1.Worksheets[0];
// Removing the first column of the worksheet
sheet.RemoveColumn(0);