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)- The
IUAVariable
C# object to add to the object on which the method is invoked. variables
(RemoteVariable)- The
RemoteVariable
C# 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>)- The
IUAVariable
list to be added to the object on which the method is invoked. -
variables
(IEnumerable<RemoteVariable>) - The
RemoteVariable
list 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 }));