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

insertMsgVariables() public method

Part of the list interface for MsgVariables This insertion function inserts a new element in the collection in MsgVariables
public insertMsgVariables ( int idx, MsgVariable el ) : void
idx int the index where the insertion must take place
el MsgVariable the element to insert
return void
        public void insertMsgVariables(int idx, MsgVariable el)
        {
            __setDirty(true);
              allMsgVariables().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

Message::insertMsgVariables ( int idx, MsgVariable el, Lock aLock ) : void