Open.Core.Lists.ListView.Clear C# (CSharp) Method

Clear() public method

Clears the list (disposing of all children).
public Clear ( ) : void
return void
        public void Clear()
        {
            foreach (IView view in itemViews.Clone())
            {
                RemoveView(view);
            }
        }
        #endregion