ReferencesAdd OnNTTabPage ClassRestore()Ask a question|Copy page|View as Markdown|More actionsRestore() Restores any elements in our NTTabPage from the workspace. (e.g. Selected accounts or instruments) Examples 1// NTTabPage member. Required for restoring elements from workspaces2public void Restore(XElement element)3{4 if (element == null)5 return;67 // Restore any elements you may have saved. e.g. selected accounts or instruments8}