DataDictionary.Generated.Message.removeMsgVariables C# (CSharp) Method

removeMsgVariables() public method

Part of the list interface for MsgVariables This deletion function removes an element from the collection in MsgVariables If the object given in parameter is not found in the the collection, this function does nothing.
public removeMsgVariables ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void
        public void removeMsgVariables(IXmlBBase obj)
        {
            int idx = indexOfMsgVariables(obj);
              if (idx >= 0) { deleteMsgVariables(idx);
            NotifyControllers(null);
               }
        }

Same methods

Message::removeMsgVariables ( IXmlBBase obj, Lock aLock ) : void