SwfDotNet.IO.Tags.Types.ButtonRecordCollection.Insert C# (CSharp) Method

Insert() public method

Inserts the specified index.
public Insert ( int index, ButtonRecord value ) : void
index int Index.
value ButtonRecord Value.
return void
        public void Insert(int index, ButtonRecord value)
        {
            List.Insert(index, value as object);
        }