pgDataOfRow

Typeproperty
Dictionarywidget.polygrid
LibraryPolyGrid
Syntax
set the pgDataOfRow of widget to {<NewDataOfRowArray>}
get the pgDataOfRow of widget
Associationscom.livecode.widget.polygrid
Summary

Get and set array of data from one row.

Example
on mouseUp
    local tDataRowArray

    # The following code shows how to get the fifth row data array.
    set the pgInternalPointer of widget "PolyGrid" to "5" --> Row 5
    put the pgDataOfRow of widget "PolyGrid" into tDataRowArray
end mouseUp
Description

Use the pgDataOfRow property to get and set an array of data from a row.

Before calling the pgDataOfRow property, you must point to the row you want to get or set the data from. This is done with the pgInternalPointer (property) property.

Tagstable,data