BrightIdeasSoftware.VirtualObjectListView.MakeListViewItem C# (CSharp) Метод

MakeListViewItem() публичный Метод

Create a OLVListItem for given row index
public MakeListViewItem ( int itemIndex ) : BrightIdeasSoftware.OLVListItem
itemIndex int The index of the row that is needed
Результат BrightIdeasSoftware.OLVListItem
        public virtual OLVListItem MakeListViewItem(int itemIndex)
        {
            OLVListItem olvi = new OLVListItem(this.GetModelObject(itemIndex));
            this.FillInValues(olvi, olvi.RowObject);

            this.PostProcessOneRow(itemIndex, this.GetDisplayOrderOfItemIndex(itemIndex), olvi);

            if (this.HotRowIndex == itemIndex)
                this.UpdateHotRow(olvi);

            return olvi;
        }