BrightIdeasSoftware.ObjectListView.AddDecoration C# (CSharp) Method

AddDecoration() public method

Add the given decoration to those on this list and make it appear
A decoration scrolls with the listview. An overlay stays fixed in place.
public AddDecoration ( IDecoration decoration ) : void
decoration IDecoration The decoration
return void
        public virtual void AddDecoration(IDecoration decoration)
        {
            if (decoration == null)
                return;
            this.Decorations.Add(decoration);
            this.Invalidate();
        }
ObjectListView