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

Remove() 공개 메소드

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

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