AODL.Document.Content.Text.XLink.CreateAttribute C# (CSharp) Метод

CreateAttribute() приватный Метод

Creates the attribute.
private CreateAttribute ( string name, string text, string prefix ) : void
name string The name.
text string The text.
prefix string The prefix.
Результат void
		private void CreateAttribute(string name, string text, string prefix)
		{
			XmlAttribute xa = this.Document.CreateAttribute(name, prefix);
			xa.Value		= text;
			this.Node.Attributes.Append(xa);
		}