ZForge.Controls.XPTable.Models.ColumnCollection.this C# (CSharp) Method

this() public method

Gets the Column at the specified index
public this ( int index ) : Column
index int
return Column
        public Column this[int index]
        {
            get
            {
                if (index < 0 || index >= this.Count)
                {
                    return null;
                }

                return this.List[index] as Column;
            }
        }