BrightIdeasSoftware.ObjectListView.HideOverlays C# (CSharp) Method

HideOverlays() public method

Hide any overlays.
This is only a temporary hiding -- the overlays will be shown the next time the ObjectListView redraws.
public HideOverlays ( ) : void
return void
        public virtual void HideOverlays()
        {
            foreach (GlassPanelForm glassPanel in this.glassPanels) {
                glassPanel.HideGlass();
            }
        }
ObjectListView