GRID.InsertRow

Previous  Next

 

state = GRID.InsertRow( BYVAL nControl AS INTEGER,

                        BYVAL header   AS STRING,

                        BYVAL format   AS INTEGER,

                        BYVAL row      AS INTEGER ) AS INTEGER

 

 

 

 

Inserts a row at the position given by nRow, or at the end of all rows if nRow is < 0. strHeading is the row heading. The format of each cell in the row will be that of the cell in the first row of the same column. Returns the position of the inserted row.

 

Example:

 

GRID.InsertRow( nControl, “Header”, 0, 1 )