Spread Windows Forms 11.0 Product Documentation
ResetLocked Method (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : ResetLocked Method
Syntax
'Declaration
 
Public Overridable Sub ResetLocked() 
'Usage
 
Dim instance As StyleInfo
 
instance.ResetLocked()
public virtual void ResetLocked()
Remarks
By default, the Locked property is not set. Resetting the property returns it to the not set state.
Example
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;
}
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
See Also

Reference

StyleInfo Class
StyleInfo Members