AODL.Document.TextDocuments.DocumentSetting.LoadFromFile C# (CSharp) Method

LoadFromFile() public method

Loads from file.
public LoadFromFile ( string file ) : void
file string The file.
return void
		public void LoadFromFile(string file)
		{
			try
			{
				this.Settings		= new XmlDocument();
				this.Settings.Load(file);
			}
			catch(Exception ex)
			{
				new AODLException(string.Format("Can not load from file {0}", file), ex);
			}
		}
	}