XPTable.Models.RowCollection.Remove C# (CSharp) Method

Remove() public method

Removes the specified Row from the model
public Remove ( Row row ) : void
row Row The Row to remove
return void
        public void Remove(Row row)
        {
            int rowIndex = this.IndexOf(row);

            if (rowIndex != -1)
            {
                this.RemoveAt(rowIndex);
            }
        }