Enable 'Select unlocked cells' from ASP.NET in the generated Excel File.

Hi,

Am using XLSIO Syncfusion to generate excel from C# code. How do i enable 'Select unlocked cells' for a protected worksheet. I do not want users to select locked cells



sync_property_a8ce2db4.zip

1 Reply

SR Sridhar Syncfusion Team April 29, 2013 04:58 AM UTC

Hi Suganya,

Thank you for using Syncfusion products.

We can acheive the above reported query using the below code with XlsIO.

Code Snippet[C#]:

IWorksheet worksheet = workbook.Worksheets[0];

//TODO:Please provide the code for unlock cells

worksheet.Protect("syncfusion", ExcelSheetProtection.UnLockedCells);

Please try the above code and let us know if this helps you.

Please go through the following online document for more details.

http://help.syncfusion.com/ug/asp.net/xlsio/default.htm#!Documents/howtoprotectcertaincellsinaspreadsheet.htm

http://help.syncfusion.com/ug/asp.net/xlsio/default.htm#!Documents/worksheetprotection.htm

Please let me know if you require any further clarifications.

Thanks,
Sridhar.S


Loader.
Up arrow icon