System.Windows.Forms.TableRowCollection.Add C# (CSharp) Method

Add() public method

public Add ( ) : int
return int
        public virtual int Add()
        {
            TableRow row = new TableRow(this);
            row.Items = new object[owner.Columns.Count];
            return Add(row);
        }
        public virtual int Add(TableRow row)

Same methods

TableRowCollection::Add ( TableRow row ) : int
TableRowCollection::Add ( int count ) : int