[]
Gets a value that indicates whether the associated IRange is locked as displayed in the current user interface.
This property returns the displayed protection setting for the associated range.
bool Locked { get; }
ReadOnly Property Locked As Boolean
IRange range = worksheet.Range["A1"];
range.Value = "Test";
range.Locked = true;
bool locked = range.DisplayFormat.Locked;