Spread for ASP.NET 10 Product Documentation
ResetForeColor Method (Cell)
Example 


Resets the text (foreground) color for the cell and makes the cell inherit the text color from the default cell.
Syntax
'Declaration
 
Public Sub ResetForeColor() 
'Usage
 
Dim instance As Cell
 
instance.ResetForeColor()
public void ResetForeColor()
Example
This example uses the ResetForeColor method.
FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.Cells[0, 0];
mycell.BackColor = System.Drawing.Color.RoyalBlue;
mycell.ForeColor = System.Drawing.Color.White;
mycell.Text = "Cell";
mycell.Border = new FarPoint.Web.Spread.Border(System.Web.UI.WebControls.BorderStyle.Double, System.Drawing.Color.DarkBlue, 2);
mycell.CellType = new FarPoint.Web.Spread.TextCellType();
//mycell.ResetBackColor();
//mycell.ResetForeColor();
//mycell.ResetBorder();
//mycell.ResetCellType();
//mycell.ResetText();
Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.Cells(0, 0)
mycell.BackColor = Color.RoyalBlue
mycell.ForeColor = Color.White
mycell.Text = "Cell"
mycell.Border = New FarPoint.Web.Spread.Border(System.Web.UI.WebControls.BorderStyle.Double, Color.DarkBlue, 2)
mycell.CellType = New FarPoint.Web.Spread.TextCellType()
'mycell.ResetBackColor()
'mycell.ResetForeColor()
'mycell.ResetBorder()
'mycell.ResetCellType()
'mycell.ResetText()
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

Cell Class
Cell Members

 

 


Copyright © GrapeCity, inc. All rights reserved.