schIsUsingSplitFeature
schIsUsingSplitFeature(
d_cellViewId
)
=> t / nil
Description
Indicates if a specified cellview uses the split feature. This implies that a schematic cellview has split instances with correctly set split-primary instances and a symbol cellivew is a split or has a split-primary symbol.
Arguments
|
The ID of an editable cellview with |
Value Returned
|
If the specified schematic cellview has at least one split instance or the specified |
|
Examples
Checks if the specified schematicSymbol cellview is a split or split-primary symbol.
s1 = dbOpenCellViewByType("lib" "bga" "s1" "schematicSymbol" "r")
schIsUsingSplitFeature(s1)
schematic = dbOpenCellViewByType("lib" "test" "schematic" "schematic" "r")
schIsUsingSplitFeature(schematic)
=> t
Return to top