Search
Table.CellValue Property
See Also
 



Specifies the value of a cell's UI widget.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
int get_CellValue (
    int col,
    int row
)
void put_CellValue (
    int col,
    int row,
    int value
)

 Parameters

col

The cell's column index.

row

The cell's row index.

 Property Value

An integer specifying the state or value selected by the user.

 Remarks

At this time, cells can display either content or checkboxes, as set through the CellType property. For checkboxes, 0 identifies unchecked state, and 1 identifies checked state.

 See Also