> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# Restore()

## Restore()

Restores any elements in our **NTTabPage** from the workspace. (e.g. Selected accounts or instruments)

## Examples

```csharp
// NTTabPage member. Required for restoring elements from workspaces
public void Restore(XElement element)
{
    if (element == null)
        return;

    // Restore any elements you may have saved. e.g. selected accounts or instruments
}
```