BrightIdeasSoftware.ObjectListView.ForceSubItemImagesExStyle C# (CSharp) Method

ForceSubItemImagesExStyle() protected method

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
return 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