 | IVariablesEventsOnVariablePropertyChanged Method |
The event is raised when an existing variable's property has been changed.
The name of the changed property is passed in propertyName parameter.
The possible values are property names of
IVariable.
Please note that when Expression of a variable changes, so is DoubleValue.
This causes OnVariablePropertyChanged event to be raised twice.
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
Syntaxvoid OnVariablePropertyChanged(
IVariable variable,
string propertyName
)
Sub OnVariablePropertyChanged (
variable As IVariable,
propertyName As String
)
Dim instance As IVariablesEvents
Dim variable As IVariable
Dim propertyName As String
instance.OnVariablePropertyChanged(variable,
propertyName)
Parameters
- variable
- Type: EMInvent.InventSim.COMServerIVariable
Reference to the changed variable. - propertyName
- Type: SystemString
The name of the changed property.
See Also