BrightIdeasSoftware.ObjectListView.ForceSubItemImagesExStyle C# (CSharp) Метод

ForceSubItemImagesExStyle() защищенный Метод

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
Результат 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