Search
Table.CellFillColor Property
See Also
 



Gets or sets the color used to fill the interior of a cell.

 Syntax

VB6  Copy Code

Public Property Get CellFillColor( _
    ByVal col As Long, _
    ByVal row As Long _
) As Long
Public Property Let CellFillColor( _
    ByVal col As Long, _
    ByVal row As Long, _
    ByVal value As Long _
)

C++  Copy Code

public:
unsigned int get_CellFillColor (
    int col,
    int row
)
void put_CellFillColor (
    int col,
    int row,
    unsigned int value
)

 Parameters

col
The 0-based index of the cell's column.
row
The 0-based index of the cell's row.

 Property Value

A color value. The default is -1.

 Remarks

Gets or sets the color used to fill in a table's cell. This is an indexed property having the cell column as first index and the cell row as second. The default value -1 specifies that the table's FillColor should be used to fill in the cell.

 See Also