Message-ID: <1578403051.9723.1711700335586.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_9722_2007921487.1711700335586" ------=_Part_9722_2007921487.1711700335586 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html SheetProtection.AllowDeleteColumns

SheetProtection.AllowDeleteColumns

Introduced in build 8.6.1

=20

Description

= =20

Sets or returns whether the worksheet will allow users to delete columns= when the worksheet is protected.

=20
C#
=20
 public boolean AllowDeleteColumns{ get; set; }
=20
=20
vb.net
=20
Public Property AllowDeleteColumns() As Boolean
=20
=20

Examples

=20
C#
=20

          ExcelApplication xla =3D new ExcelApplication();
          Workbook wb =3D xla.Open(@"C:\MySpreadsheet.xlsx");
          Worksheet ws =3D wb.Worksheets[0];
          ws.SheetProtection.AllowDeleteColumns =3D true;
          ws.Protect("password");
        
=20
=20
vb.net
=20

          Dim xla As New ExcelApplication()
          Dim wb As Workbook =3D xla.Open("C:\MySpreadsheet.xlsx"=
)
          Dim ws As Worksheet =3D wb.Worksheets(0)
          ws.SheetProtection.AllowDeleteColumns =3D true
          ws.Protect("password");
        
=20
------=_Part_9722_2007921487.1711700335586--