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

ForceSubItemImagesExStyle() protected méthode

Make sure the ListView has the extended style that says to display subitem images.
This method must be called after any .NET call that update the extended styles since they seem to erase this setting.
protected ForceSubItemImagesExStyle ( ) : void
Résultat void
        protected virtual void ForceSubItemImagesExStyle()
        {
            // Virtual lists can't show subitem images natively, so don't turn on this flag
            if (!this.VirtualMode)
                NativeMethods.ForceSubItemImagesExStyle(this);
        }
ObjectListView