AODL.Document.SpreadsheetDocuments.SpreadsheetDocument.LoadBlankContent C# (CSharp) Method

LoadBlankContent() private method

Load a blank the spreadsheet content document.
private LoadBlankContent ( ) : void
return 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);
		}