GetProperties
Gets
a list of all the properties belonging to a specific <PropServer>
and <PropTab>. This can be executed by the
oProject, oDesign,
or oEditor variables.
| UI Access
|
N/A
|
| Parameters
|
|
|
|
|
|
<PropTab>
|
String
|
One of the following, where tab titles are
shown in parentheses: - PassedParameterTab ("Parameter Values")
- DefinitionParameterTab (Parameter Defaults")
- LocalVariableTab ("Variables" or "Local Variables")
- ProjectVariableTab ("Project variables")
- ConstantsTab ("Constants")
- BaseElementTab ("Symbol" or "Footprint")
- ComponentTab ("General")
- Component("Component")
- CustomTab ("Intrinsic Variables")
- Quantities ("Quantities")
- Signals ("Signals")
|
| <PropServer> |
String |
An object identifier, generally returned
from another script method, such as CompInst@R;2;3 |
|
| Return Value
|
Array
of strings containing the names of the appropriate properties.
|
| Python Syntax
|
GetProperties(
<PropTab>, <PropServer> )
|
| Python Example
|
oEditor.GetProperties('PassedParameterTab', 'k')
|