AODL.Document.SpreadsheetDocuments.SpreadsheetDocument.LoadBlankContent C# (CSharp) 메소드

LoadBlankContent() 개인적인 메소드

Load a blank the spreadsheet content document.
private LoadBlankContent ( ) : void
리턴 void
		private void LoadBlankContent()
		{
				Assembly ass			= Assembly.GetExecutingAssembly();
				Stream str				= ass.GetManifestResourceStream("AODL.Resources.OD.spreadsheetcontent.xml");
				this._xmldoc			= new XmlDocument();
				this._xmldoc.Load(str);
		}