cleCreatePartition
cleCreatePartition(d_cellViewID t_name[t_owner] ) =>t_designPartitionName/ nil
Description
Creates a design partition definition in the specified Concurrent Layout cellview and changes the status of the design partition to Defined.
Arguments
|
Name of the design partition. If you specify an empty string, a unique name is generated automatically. The syntax for this name is |
|
Value Returned
Examples
Creates the design partition cle_p1 in the cellview cvId.
cleCreatePartition(cvId "cle_p1")
=> "cle_p1"
Creates the design partition cle_p2 with the specified owner "James" in the cellview cvId.
cleCreatePartition(cvId "cle_p2" "James")
=> "cle_p2"
Return to top