Gets or sets the whether the style marks cells as locked.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Property Locked As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As StyleInfo
Dim value As Boolean
instance.Locked = value
value = instance.Locked |
C# | |
---|
public virtual bool Locked {get; set;} |
Property Value
Boolean:
true if the cell is marked as locked;
false otherwise
Remarks
Example
C# | Copy Code |
---|
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
DialogResult dlg;
si.Locked = true;
fpSpread1.ActiveSheet.DefaultStyle = si;
dlg = MessageBox.Show("Reset the locked?");
if (dlg == DialogResult.OK)
{
si.ResetLocked();
fpSpread1.ActiveSheet.DefaultStyle = si;
}
|
Visual Basic | Copy Code |
---|
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim dlg As DialogResult
si.Locked = True
FpSpread1.ActiveSheet.DefaultStyle = si
dlg = MessageBox.Show("Reset the locked?")
If dlg = DialogResult.OK Then
si.ResetLocked()
FpSpread1.ActiveSheet.DefaultStyle = si
End If
|
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also