gpeSetSize
gpeSetSize(g_tableView l_dimensions['stable|'nostable] [n_rows] [n_columns] ) => t / nil
Description
Resizes the specified Grid Pattern Editor table. If the table dimensions are smaller or larger than the new dimensions, then rows or columns are added or removed, as needed.
Arguments
Value Returned
Example
Resizes the current table to 4 rows by 4 columns:
gpeSetSize(dwindow('gpeGridAsst_1) 4 4)
Resizes a 4x4 grid to 8x8, while rearranges the 16 original cells to the bottom 2 rows (2 rows x 8 columns) to the bottom 2 rows (2 rows x 8 columns):
gpeSetSize(dwindow('gpeGridAsst_1) 8:8 'nostable)
Return to top