gpeSetAbutEntries
gpeSetAbutEntriesu_sandbox l_abutEntries[?verbose{t|nil} ] ) =>t/nil
Description
Modifies the Modgen sandbox object by applying the abutment specified by the abutment entries. If there is any conflict between the new entry and any existing entry, the existing entry is removed and the new entry is used.
Arguments
|
Represents a list of abut entries that specify the rows and columns to be abutted. |
|
Value Returned
Example
The following example first defines the two arguments sbox and abutEntries, and then uses them in gpeSetAbutEntries to modify the sandbox object.
sbox = gpeEditSandbox()
abutEntries = gpeCreateAbutEntries(?rows 0 ?cols list(list(0 2)) ?abutType "type0")
gpeSetAbutEntries(sbox abutEntries)
=> t
Return to top