BrightIdeasSoftware.ObjectListView.UnapplyHotItem C# (CSharp) Method

UnapplyHotItem() protected method

Remove hot item styling from the given row
protected UnapplyHotItem ( int index ) : void
index int
return void
        protected virtual void UnapplyHotItem(int index)
        {
            this.Cursor = Cursors.Default;
            // Virtual lists will apply the appropriate formatting when the row is fetched
            if (this.VirtualMode) {
                if (index < this.VirtualListSize)
                    this.RedrawItems(index, index, true);
            } else {
                OLVListItem olvi = this.GetItem(index);
                if (olvi != null) {
                    //this.PostProcessOneRow(index, index, olvi);
                    this.RefreshItem(olvi);
                }
            }
        }
ObjectListView