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

ColumnCollection() public method

Initializes a new instance of the ColumnModel.ColumnCollection class that belongs to the specified ColumnModel
public ColumnCollection ( ColumnModel owner ) : System
owner ColumnModel A ColumnModel representing the columnModel that owns /// the Column collection
return System
        public ColumnCollection(ColumnModel owner)
            : base()
        {
            if (owner == null)
            {
                throw new ArgumentNullException("owner");
            }

            this.owner = owner;
            this.totalColumnWidth = 0;
            this.visibleColumnsWidth = 0;
            this.visibleColumnCount = 0;
            this.lastVisibleColumn = -1;
        }