BrightIdeasSoftware.ObjectListView.AddOverlay C# (CSharp) Method

AddOverlay() public method

Add the given overlay to those on this list and make it appear
public AddOverlay ( IOverlay overlay ) : void
overlay IOverlay The overlay
return void
        public virtual void AddOverlay(IOverlay overlay)
        {
            if (overlay == null)
                return;
            this.Overlays.Add(overlay);
            this.Invalidate();
        }
ObjectListView