AODL.Package.ODFPackage.Load C# (CSharp) Method

Load() public method

Loads the specified odf file.
public Load ( string odfFile ) : void
odfFile string The odf file.
return void
		public void Load(string odfFile)
		{
			this._currentFile = odfFile;
			this._package = new ZipFile(File.Open(odfFile, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite));
            //this._package.BeginUpdate();
		}