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

this() public method

Gets or sets the TextRecord at the specified index.
public this ( int index ) : TextRecord
index int
return TextRecord
        public TextRecord this[int index]
        {
            get
            {
                return ((TextRecord)List[index]);
            }
            set
            {
                List[index] = value;
            }
        }