ZForge.Controls.XPTable.Models.ColumnCollection.this C# (CSharp) 메소드

this() 공개 메소드

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

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