Version

LoadLayout(Object,String) Method

Loads chart properties from xml file. Please see LoadPreset.
Syntax
'Declaration
 
Public Overloads Sub LoadLayout( _
   ByVal component As Object, _
   ByVal filePath As String _
) 
public void LoadLayout( 
   object component,
   string filePath
)

Parameters

component
This component
filePath
Xml file path to load layout from.
Example
' SaveLayout and LoadLayout can be done through a file path...
Me.UltraChart1.SaveLayout(Me.ultraChart1, Application.StartupPath & "\myChartLayout.xml")
Me.UltraChart2.LoadLayout(Me.ultraChart2, Application.StartupPath & "\myChartLayout.xml")
			
' or through XmlTextWriter/XmlTextReader objects
Dim xTW As New System.Xml.XmlTextWriter(Application.StartupPath & "\myChartLayout.xml", System.Text.Encoding.Default)
this.ultraChart1.SaveLayout(Me.ultraChart1, xTW)
xTW.Close()
Dim xTR As New System.Xml.XmlTextReader(Application.StartupPath & "\myChartLayout.xml")
Me.ultraChart2.LoadLayout(Me.ultraChart2, xTR)
// SaveLayout and LoadLayout can be done through a file path...
this.ultraChart1.SaveLayout(this.ultraChart1, Application.StartupPath + @"\myChartLayout.xml");
this.ultraChart2.LoadLayout(this.ultraChart2, Application.StartupPath + @"\myChartLayout.xml");
			
// or through XmlTextWriter/XmlTextReader objects
System.Xml.XmlTextWriter xTW = new System.Xml.XmlTextWriter(Application.StartupPath + @"\myChartLayout.xml", System.Text.Encoding.Default);
this.ultraChart1.SaveLayout(this.ultraChart1, xTW);
xTW.Close();
System.Xml.XmlTextReader xTR = new System.Xml.XmlTextReader(Application.StartupPath + @"\myChartLayout.xml");
this.ultraChart2.LoadLayout(this.ultraChart2, xTR);
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also