ZForge.Controls.XPTable.Models.CellCollection.CellCollection C# (CSharp) Method

CellCollection() public method

Initializes a new instance of the CellCollection class that belongs to the specified Row
public CellCollection ( Row owner ) : System
owner Row A Row representing the row that owns /// the Cell collection
return System
        public CellCollection(Row owner)
            : base()
        {
            if (owner == null)
            {
                throw new ArgumentNullException("owner");
            }

            this.owner = owner;
        }