System.Windows.Forms.TableRowCollection.Add C# (CSharp) Méthode

Add() public méthode

public Add ( ) : int
Résultat 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