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

this() 공개 메소드

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

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