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


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

Reference

Column Class
Column Members