gpeInsertEmptyRows
gpeInsertEmptyRows(u_sandbox t_direction x_startRow[?countn_count] [?verbose{t|nil} ] ) =>t/nil
Description
Inserts empty rows in the specified Modgen sandbox object in the specified direction, starting at the specified row.
Arguments
Value Returned
Examples
Inserts 5 empty rows below the last row.
sbox = [create and populate a sandbox]
gpeInsertEmptyRows(sbox "top" difference(gpeGetGridRowCount(sbox) 1) ?count 5)
Inserts 5 empty rows above the first row.
gpeInsertEmptyRows(sbox "bottom" 0 ?count 5)
Inserts 1 empty row above the fourth row, between the rows indexed as 2 and 3.
;; (index 3 is the 4th row)
gpeInsertEmptyRows(sbox "bottom" 3)
Inserts 1 empty row below the third row, between the rows indexed as 2 and 3.
;; (index 2 is the 3rd row)
gpeInsertEmptyRows(sbox "top" 2)
Inserts 1 empty row above the fourth row.
gpeInsertEmptyRows(sbox "bottom" 3)
Inserts 1 empty row above the fourth row, but suppresses the error messages.
gpeInsertEmptyRows(sbox "bottom" 3 ?verbose nil)
Return to top