gpeIsValidAbutType
gpeIsValidAbutType (u_sandbox{t_abutTypeName|x_abutType} [?verbose{t|nil} ] ) =>t/nil
Description
Validates the specified abutment type name or number for the specified Modgen sandbox object.
Arguments
Value Returned
Example
In the following example, the value of sb is determined by calling gpeEditSandbox. This value is passed as an argument to gpeIsValidAbutType, which is used to validate different abutment type names and numbers:
sb = gpeEditSandbox()
gpeIsValidAbutType(sb "type0" ?verbose t)
> t
gpeIsValidAbutType(sb 0 ?verbose t)
> t
gpeIsValidAbutType(sb 2)
> nil
t_abutTypeName
Return to top