XPTable.Models.RowCollection.RowCollection C# (CSharp) Method

RowCollection() public method

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

            this.rowowner = owner;
        }

Same methods

RowCollection::RowCollection ( TableModel owner ) : System