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

RowCollection() 공개 메소드

Initializes a new instance of the RowCollection class that belongs to the specified Row
public RowCollection ( Row owner ) : System
owner Row
리턴 System
        public RowCollection(Row owner)
            : base()
        {
            if (owner == null)
            {
                throw new ArgumentNullException("owner");
            }

            this.rowowner = owner;
        }

Same methods

RowCollection::RowCollection ( TableModel owner ) : System