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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Column Class : ResetParentStyleName Method
Resets the ParentStyleName for the column to an empty string.
Syntax
'Declaration
 
Public Sub ResetParentStyleName() 
'Usage
 
Dim instance As Column
 
instance.ResetParentStyleName()
public void ResetParentStyleName()
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 parent style name for the first column.
FarPoint.Win.Spread.Column c;
c = fpSpread1.ActiveSheet.Columns[0];
c.ResetParentStyleName();
Dim c As FarPoint.Win.Spread.Column
c = fpSpread1.ActiveSheet.Columns(0)
c.ResetParentStyleName()
See Also

Reference

Column Class
Column Members