RemoteVariableSynchronizer.Remove(variables)
Depending on the overload, removes a variable or a list of variables from the
RemoteVariableSynchronizer
object on which it is invoked.void public void Remove(IUAVariable variables); void public void Remove(RemoteVariable variables); void public void Remove(IEnumerable<IUAVariable> variables); void public void Remove(IEnumerable<RemoteVariable> variables);
Argument
- variables(IUAVariable)
- TheIUAVariableC# object to add to the object on which the method is invoked.
- variables(RemoteVariable)
- TheRemoteVariableC# object that identifies a cell of a one-dimensional or multidimensional array to be added to the object on which the method is invoked.
- variables(IEnumerable<IUAVariable>)
- TheIUAVariablelist to be added to the object on which the method is invoked.
- variables(IEnumerable<RemoteVariable>)
- TheRemoteVariablelist to be added to the object on which the method is invoked.
Examples
In the following example, a variable
speed
is removed from the variableSynchronizer
object.
variableSynchronizer.Remove(speed);
In the following example, the
10
index variable is removed from the variableSynchronizer
object within the arrayVariable
array.
variableSynchronizer.Remove(new RemoteVariable(arrayVariable, 10));
In the following example, the
10.5
index variable is removed from the variableSynchronizer
object within the scalarVariable
multidimensional array.
variableSynchronizer.Remove(new RemoteVariable(scalarVariable, new uint[] { 10,5 }));
Provide Feedback