Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

Protection.Locked Property

Gets or sets whether the cell is locked if the worksheet is protected.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v20.2.Core.dll

Declaration

bool Locked { get; set; }

Property Value

Type Description
Boolean

true, to lock a cell in a protected sheet; otherwise, false.

Remarks

The following code unlocks the C3 cell of the currently active worksheet when the sheet becomes protected. This cell is editable when the worksheet is locked.

spreadsheetControl1.ActiveWorksheet.Cells[2,2].Protection.Locked = false;
See Also