BrightIdeasSoftware.ObjectListView.ClearObjects C# (CSharp) Méthode

ClearObjects() public méthode

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