Restore()

View as Markdown

Restore()

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

Examples

1// NTTabPage member. Required for restoring elements from workspaces
2public void Restore(XElement element)
3{
4 if (element == null)
5 return;
6
7 // Restore any elements you may have saved. e.g. selected accounts or instruments
8}