IPropertiesDataExchange#

class ansys.scade.guitools.interfaces.IPropertiesDataExchange#

Bases: abc.ABC

Interface for exchanging data between a property page and the model.

Overview#

model_to_page

Update the page with the properties read from the model.

page_to_model

Update the model with the properties read from the page.

Import detail#

from ansys.scade.guitools.interfaces import IPropertiesDataExchange

Method detail#

abstract IPropertiesDataExchange.model_to_page(model: Any)#

Update the page with the properties read from the model.

Parameters#

modelAny

Selected model element.

abstract IPropertiesDataExchange.page_to_model(model: Any)#

Update the model with the properties read from the page.

Parameters#

modelAny

Selected model element.