ComponentFactory.Krypton.Docking.KryptonAutoHiddenGroup.StoreAllPages C# (CSharp) Method

StoreAllPages() public method

Convert all pages into store placeholders.
public StoreAllPages ( ) : void
return void
        public void StoreAllPages()
        {
            List<string> uniqueNames = new List<string>();

            // Create a list of pages that have not yet store placeholders
            foreach(KryptonPage page in Pages)
                if (!(page is KryptonStorePage))
                    uniqueNames.Add(page.UniqueName);

            StorePages(uniqueNames.ToArray());
        }