Save()

View as Markdown

Saves elements in our NTTabPage to the workspace (e.g. Selected accounts or instruments)

Examples

1// NTTabPage member. Required for saving elements to workspaces
2public void Save(XElement element)
3{
4 if (element == null)
5 return;
6
7 // Save any elements you may want persisted. e.g. selected accounts or instruments
8}