TextArray Property

Returns or sets the contents of a cell identified by a single index.

Syntax

[form!]VSFlexGrid.TextArray(Index As Long)[ = value As String ]

Remarks

This property is provided for backward compatibility with earlier versions of this control. New applications should use the Cell(flexcpText) or TextMatrix properties.

The following code places the text "Apple" in the second row and second column of a five column grid:

    fg.TextArray(6) = "Apple"

Data Type

String

See Also

VSFlexGrid Control