XPTable.Models.Table.Clear C# (CSharp) Method

Clear() public method

Removes the ColumnModel and TableModel from the Table
public Clear ( ) : void
return void
        public void Clear()
        {
            if (this.ColumnModel != null)
                this.ColumnModel = null;

            if (this.TableModel != null)
                this.TableModel = null;

            ClearAllRowControls();
        }
Table