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

Add() public method

Adds the specified value.
public Add ( TextRecord value ) : TextRecord
value TextRecord Value.
return TextRecord
        public TextRecord Add(TextRecord value)
        {
            List.Add(value as object);
            return value;
        }