gpePlaceGridEntries
gpePlaceGridEntries (u_sandbox l_gridEntries[?verbose{t|nil} ] ) =>t/nil
Description
Places the specified grid entries at the specified location in the specified Modgen sandbox object.
Arguments
|
Specifies the list of grid entries to be added at the specified location in the sandbox grid. Example: |
|
Value Returned
Example
In the following example, the value of sb is determined by calling gpeEditSandbox. The synchronization mode is turned on for sb. gpeClearGridEntries is used to unplace a few grid entries in sb. gpePlaceGridEntries is then used to place these grid entries.
> sb = gpeEditSandbox()
> entries = gpeClearGridEntries( sb ?row 1 ?verbose t)
> gpePlaceGridEntries(sb entries ?verbose t)
> t
> gpeSyncSandbox(sb)
Return to top