cleRefreshAssistantByCellView
cleRefreshAssistantByCellView(
d_cellViewID
)
=> t / nil
Description
Refreshes the content of the Concurrent Layout assistant in the specified Concurrent Layout cellview when you load a SKILL script that updates the design partition definition or changes the status of design partition view.
Arguments
Value Returned
Examples
Creates the design partition cle_p1 in the cellview cvId and changes the status of cle_p1 to Defined.
cleCreatePartition(cvId "cle_p1")
=> "cle_p1"
Attaches existing area boundary AB_1 to cle_p1.
clePartitionAttachAreaBoundary(cvId "cle_p1" "AB_1")
=> t
Creates the design partition view corresponding to the design partition cle_p1 and changes the status of cle_p1 to Created.
cleCreatePartitionView(cvId "cle_p1")
=> t
Creates design partition cle_p2 in the cellview cvId and changes the status of cle_p2 to Defined.
cleCreatePartition(cvId "cle_p2")
=> "cle_p2"
Creates the design partition view corresponding to the design partition cle_p2 and changes the status of cle_p2 to Created.
cleCreatePartitionView(cvId "cle_p2")
=> t
Refreshes the Concurrent Layout assistant to reflect the changes made in the preceding steps.
cleRefreshAssistantByCellView(cvId)
=> t
Return to top