System.Windows.Forms.TableRowCollection.Add C# (CSharp) 메소드

Add() 공개 메소드

public Add ( ) : int
리턴 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