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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Column Class : ResetWidth Method
Resets the width for the column and makes the column inherit the width from the default column.
Syntax
'Declaration
 
Public Sub ResetWidth() 
'Usage
 
Dim instance As Column
 
instance.ResetWidth()
public void ResetWidth()
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 width for the first column.
FarPoint.Win.Spread.Column c;
c = fpSpread1.ActiveSheet.Columns[0];
c.ResetWidth();
Dim c As FarPoint.Win.Spread.Column
c = fpSpread1.ActiveSheet.Columns(0)
c.ResetWidth()
See Also

Reference

Column Class
Column Members