SysMLElement#
- class ansys.sam.sysml2.classes.sysml_element.SysMLElement(element_id: str)#
Provides the Python base class for all SysML elements.
Overview#
Get the value of the feature. |
|
Parse the value and create the valuation part in the feature. |
|
Update the feature value. |
|
Delete the element from the model via the observer’s commit to the server. |
Get the attribute list from the real element. |
|
Get the attribute from the real element. |
|
Intercept attribute assignment and notify the modification observer. |
Import detail#
from ansys.sam.sysml2.classes.sysml_element import SysMLElement
Method detail#
- SysMLElement.__dir__()#
Get the attribute list from the real element.
- SysMLElement.__getattr__(name)#
Get the attribute from the real element.
- SysMLElement.__setattr__(name: str, value: object)#
Intercept attribute assignment and notify the modification observer.
- SysMLElement.get_value()#
Get the value of the feature.
- SysMLElement.parse_and_set_value(value: str)#
Parse the value and create the valuation part in the feature.
- SysMLElement.delete()#
Delete the element from the model via the observer’s commit to the server.