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

this() public method

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

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