AODL.Document.Content.Charts.Chart.CreateParentNode C# (CSharp) Метод

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

create the parentnode of the chart
public CreateParentNode ( string objectlink ) : XmlNode
objectlink string
Результат System.Xml.XmlNode
		public XmlNode CreateParentNode(string objectlink)
		{
			XmlAttribute xa = this.Document.CreateAttribute("href", "xlink");
			xa.Value		= objectlink;
			this.ParentNode .Attributes .Append (xa);
			return this.ParentNode ;
		}