AODL.Document.SpreadsheetDocuments.SpreadsheetDocument.CreateNode C# (CSharp) Метод

CreateNode() публичный Метод

Create a new XmlNode for this document.
public CreateNode ( string name, string prefix ) : XmlNode
name string The elementname.
prefix string The prefix.
Результат System.Xml.XmlNode
		public XmlNode CreateNode(string name, string prefix)
		{
			
			if (this.XmlDoc == null)
				throw new NullReferenceException("There is no XmlDocument loaded. Couldn't create Node "+name+" with Prefix "+prefix+". "+this.GetType().ToString());
			string nuri = this.GetNamespaceUri(prefix);
			return this.XmlDoc.CreateElement(prefix, name, nuri);
		}