BrightIdeasSoftware.ObjectListView.ClearObjects C# (CSharp) Method

ClearObjects() public method

Remove all items from this list
public ClearObjects ( ) : void
return void
        public virtual void ClearObjects()
        {
            if (this.InvokeRequired)
                this.Invoke(new MethodInvoker(this.ClearObjects));
            else
                this.SetObjects(null);
        }
ObjectListView