AODL.Document.Content.OfficeEvents.EventListener.CreateAttribute C# (CSharp) 메소드

CreateAttribute() 보호된 메소드

Create a XmlAttribute for propertie XmlNode.
protected CreateAttribute ( string name, string text, string prefix ) : void
name string The attribute name.
text string The attribute value.
prefix string The namespace prefix.
리턴 void
		protected void CreateAttribute(string name, string text, string prefix)
		{
			XmlAttribute xa = this.Document.CreateAttribute(name, prefix);
			xa.Value = text;
			this.Node.Attributes.Append(xa);
		}