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

RemoveRange() 공개 메소드

Removes an array of Row objects from the collection
public RemoveRange ( Row rows ) : void
rows Row An array of Row objects to remove /// from the collection
리턴 void
        public void RemoveRange(Row[] rows)
        {
            if (rows == null)
            {
                throw new System.ArgumentNullException("Row[] is null");
            }

            for (int i=0; i<rows.Length; i++)
            {
                this.Remove(rows[i]);
            }
        }