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

Insert() public method

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