GridData.GetCell operator

Introduced

v4.0

Description

Returns the value stored on a specific cell of the GridData object.

C# Syntax

Object GridData.GetCell( Object in_Column, Object in_Row );

Scripting Syntax

oVariant = GridData.GetCell( ColumnIndex, RowIndex );

Return Value

Variant containing the contents of the Cell. The variant is empty if the cell is empty.

Parameters

Parameter Type Description
ColumnIndex long or string Index or label of the Column. The left-most column has index 0.
RowIndex long or string Index or label of the Row. The top row has index 0.

See Also

GridData.SetCell GridData.Data