Save()

View as Markdown

Definition

Saves the window to workspaces.

Examples

1// IWorkspacePersistence member. Required for saving window to workspaces
2public void Save(XDocument document, XElement element)
3{
4
5 if (MainTabControl != null)
6 MainTabControl.SaveToXElement(element);
7
8}