XPTable.Models.Table.AddItem C# (CSharp) Method

AddItem() private method

Inserts the item at the given index from the data source.
private AddItem ( int index ) : void
index int
return void
        private void AddItem(int index)
        {
            Row row = this.GetRowFromDataSource(index);
            this.TableModel.Rows.Insert(index, row);
        }
Table