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

this() public method

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