Dev2.Studio.UserInterfaceLayoutProvider.PersistTabs C# (CSharp) Method

PersistTabs() public method

Saves all open tabs locally and writes the open tabs the to collection of workspace items
public PersistTabs ( ) : void
return void
        public void PersistTabs()
        {
            SaveWorkspaceItems();
            foreach (IContextualResourceModel resourceModel in GetOpenContextualResourceModels())
            {
                Mediator.SendMessage(MediatorMessages.BuildResource, resourceModel);
            }
        }

Same methods

UserInterfaceLayoutProvider::PersistTabs ( System.Windows.Controls.ItemCollection tabcollection ) : void