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

this() public method

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