PostClose() public méthode

public PostClose ( ) : void
Résultat void
        public static void GoTo(ManagerTab tab, ManagerJob job = null)
        {
            // call pre/post open/close methods
            ManagerTab old = CurrentTab;

            old.PreClose();
            tab.PreOpen();
            CurrentTab = tab;
            old.PostClose();
            tab.PostOpen();

            // if desired, set selected.
            if (job != null)
            {
                tab.Selected = job;
            }
        }
 public override void PostClose()
 {
     base.PostClose();
     CurrentTab.PostClose();
 }