BrightIdeasSoftware.ObjectListView.BuildList C# (CSharp) Method

BuildList() public method

Build/rebuild all the list view items in the list, preserving as much state as is possible
public BuildList ( ) : void
return void
        public virtual void BuildList()
        {
            if (this.InvokeRequired)
                this.Invoke(new MethodInvoker(this.BuildList));
            else
                this.BuildList(true);
        }

Same methods

ObjectListView::BuildList ( bool shouldPreserveState ) : void
ObjectListView