BrightIdeasSoftware.ObjectListView.RefreshSelectedObjects C# (CSharp) Method

RefreshSelectedObjects() public method

Update the rows that are selected
This method does not resort or regroup the view.
public RefreshSelectedObjects ( ) : void
return void
        public virtual void RefreshSelectedObjects()
        {
            foreach (ListViewItem lvi in this.SelectedItems)
                this.RefreshItem((OLVListItem)lvi);
        }
ObjectListView