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

SheetProtection.AllowInsertHyperlinks

Introduced in build 8.6.1

=20 =20
C#
=20

          ExcelApplication xla =3D new ExcelApplication();
          Workbook wb =3D xla.Open(@"C:\MySpreadsheet.xlsx");
          Worksheet ws =3D wb.Worksheets[0];
          ws.SheetProtection.AllowInsertHyperlinks =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.AllowInsertHyperlinks =3D true
          ws.Protect("password");
        
=20
------=_Part_10398_1991504399.1711723708546--