Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Cell Class / ForeColor Property
Example


In This Topic
    ForeColor Property (Cell)
    In This Topic
    Gets or sets the text (foreground) color for a cell.
    Syntax
    'Declaration
     
    
    Public Property ForeColor As Color
    'Usage
     
    
    Dim instance As Cell
    Dim value As Color
     
    instance.ForeColor = value
     
    value = instance.ForeColor
    public Color ForeColor {get; set;}

    Property Value

    Color object that contains the text color for this cell
    Remarks

    The setting for this property can be overridden if a named style is assigned to the cell using the StyleName property, and that named style sets the text color.

    Specify the background color for the cell by setting the BackColor property.

    Example
    This example creates a Cell object, sets in BackColor and ForeColor properties, defines it as a CheckBox cell type, and puts a border around it. When the user edits the cell and checks the CheckBox, the text of the cell changes.
    See Also