AODL.Document.TextDocuments.DocumentSetting.LoadFromFile C# (CSharp) 메소드

LoadFromFile() 공개 메소드

Loads from file.
public LoadFromFile ( string file ) : void
file string The file.
리턴 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);
			}
		}
	}