gpeInsertEmptyColumns
gpeInsertEmptyColumns(u_sandbox t_direction x_startColumn[?countn_count] [?verbose{t|nil} ] ) =>t/nil
Description
Inserts empty columns in the specified Modgen sandbox object in the specified direction, starting at the specified column.
Arguments
Value Returned
Examples
Inserts 5 empty columns after the last column.
sbox = [create and populate a sandbox]
gpeInsertEmptyColumns(sbox "right" difference(gpeGetGridColCount(sbox) 1) ?count 5)
Inserts 5 empty columns to the left.
gpeInsertEmptyColumns(sbox "left" 0 ?count 5)
Inserts 1 empty column to the left of the 4th column, between columns indexed as 2 and 3.
;; (index 3 is the 4th column)
gpeInsertEmptyColumns(sbox "left" 3)
Inserts one column to the right of the third column, between columns indexed as 2 and 3.
;; (index 2 is the 3rd column)
gpeInsertEmptyColumns(sbox "right" 2)
Return to top