deGetRootViewTypeList
deGetRootViewTypeList(
)
=> l_rootViewTypes / nil
Description
Returns a list of root view types, which have an associated tool as specified in the tool registry.
Arguments
Value Returned
|
List of root view types, which have an associated tool as specified in the tool registry. |
|
Examples
deGetRootViewTypeList()
=>
("adexl" "Cdl" "schematic" "config" "Hspice" "modelwriter" "Spectre" "Spice" "text" "Vhdl" "VHDLAMSText" "physConfig" "text.v" "text.veriloga" "VerilogAMSText" "maskLayout" "schematic" "schematicSymbol")
To generate a list of view types that you can choose from the New File dialog box, use:
(mapcar 'deMapViewTypeToUserType (deGetRootViewTypeList))
Return to top