Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Introduced in build 8.6.1

Description

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

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

Examples

C#
ExcelApplication xla = new ExcelApplication();
Workbook wb = xla.Open(@"C:\MySpreadsheet.xlsx");
Worksheet ws = wb.Worksheets[0];
ws.SheetProtection.AllowFormatColumns = true;
ws.Protect("password");
vb.net
Dim xla As New ExcelApplication()
Dim wb As Workbook = xla.Open("C:\MySpreadsheet.xlsx")
Dim ws As Worksheet = wb.Worksheets(0)
ws.SheetProtection.AllowFormatColumns = true
ws.Protect("password");
  • No labels