Cell
- class keysight.ads.de.Cell
- __init__(library: Library, cell_name: str) None
__init__ is deprecated, and will be removed in the 2025 Update 2 release. Use Cell.get(library, cell_name) or library.cell(cell_name).
- property cell_name: str
- delete_design_variables() None
- delete_dm_data() None
- delete_view(view_name: str) None
- property has_dm_data: bool
- property lib_name: str
- property model_def: ModelDefBase | None
- module_name() str
Return the full name of the Python module for this Cell.
Will raise an exception if this Cell does not have a Python module.
- property name: str
- property path: Path
- read_design_variables() list[tuple[str, str]]
- view_exists(view_name: str) bool
- property views: NamedItemCollectionAbc[View]
The collection of views in this cell.
A view may be accessed by using the [] operator, indexed by the view name.
- write_design_variables(variables: list[tuple[str, str]]) None