Spread Windows Forms 12.0 Product Documentation
ResetLocked Method (Column)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Column Class : ResetLocked Method
Resets the locked state for the column and makes the column inherit the locked state from the default column.
Syntax
'Declaration
 
Public Sub ResetLocked() 
'Usage
 
Dim instance As Column
 
instance.ResetLocked()
public void ResetLocked()
Remarks

This method should allow resetting of the property from the Property window at design time.

Example
This example shows the use of the method by resetting the locked property for the first column.
FarPoint.Win.Spread.Column c;
c = fpSpread1.ActiveSheet.Columns[0];
c.ResetLocked();
Dim c As FarPoint.Win.Spread.Column
c = fpSpread1.ActiveSheet.Columns(0)
c.ResetLocked()
See Also

Reference

Column Class
Column Members