إزالة عمود من ورقة العمل

إزالة عمود من ورقة العمل

لإزالة عمود من ورقة العمل، يرجى اتباع الخطوات التالية:

  • الوصول إلى أي ورقة عمل مرغوبة
  • إزالة العمود من ورقة العمل عن طريق تحديد فهرس العمود الذي سيتم إزالته
// 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);