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