BrightIdeasSoftware.ObjectListView.ClearObjects C# (CSharp) 메소드

ClearObjects() 공개 메소드

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