BrightIdeasSoftware.ObjectListView.SetSubItemImages C# (CSharp) Méthode

SetSubItemImages() protected méthode

Tell the underlying list control which images to show against the subitems
protected SetSubItemImages ( int rowIndex, OLVListItem item, bool shouldClearImages ) : void
rowIndex int the index at which the item occurs
item OLVListItem the item whose subitems are to be set
shouldClearImages bool will existing images be cleared if no new image is provided?
Résultat void
        protected virtual void SetSubItemImages(int rowIndex, OLVListItem item, bool shouldClearImages)
        {
            if (!this.ShowImagesOnSubItems || this.OwnerDraw)
                return;

            for (int i = 1; i < item.SubItems.Count; i++) {
                this.SetSubItemImage(rowIndex, i, item.GetSubItem(i), shouldClearImages);
            }
        }

Same methods

ObjectListView::SetSubItemImages ( int rowIndex, OLVListItem item ) : void
ObjectListView