BrightIdeasSoftware.ObjectListView.HideOverlays C# (CSharp) Méthode

HideOverlays() public méthode

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